From 5a2983d30ecb83051ec42895742d3092b01763d7 Mon Sep 17 00:00:00 2001 From: Christopher Charbonneau Wells Date: Mon, 25 Sep 2017 12:18:02 -0400 Subject: [PATCH] Remove redundant "changes" from Diaper Change types graph key. --- reports/graphs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reports/graphs.py b/reports/graphs.py index a0344d2c..ea3ea39a 100644 --- a/reports/graphs.py +++ b/reports/graphs.py @@ -29,18 +29,18 @@ def diaperchange_types(child): solid_trace = go.Scatter( mode='markers', - name='Solid changes', + name='Solid', x=list(changes.values_list('date', flat=True)), y=list(changes.values_list('solid_count', flat=True)), ) wet_trace = go.Scatter( mode='markers', - name='Wet changes', + name='Wet', x=list(changes.values_list('date', flat=True)), y=list(changes.values_list('wet_count', flat=True)) ) total_trace = go.Scatter( - name='Total changes', + name='Total', x=list(changes.values_list('date', flat=True)), y=list(changes.values_list('total', flat=True)) )