Improve fake data for height percentile reports

As requested by @cdubz on https://github.com/babybuddy/babybuddy/pull/741
This commit is contained in:
Xavier Mehrenberger 2023-12-23 16:14:09 +01:00 committed by Christopher Charbonneau Wells
parent 6c4f5b23f0
commit 519045d5e7
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class Command(BaseCommand):
self._add_weight_entry() self._add_weight_entry()
last_weight_entry_time = self.time last_weight_entry_time = self.time
self.height = round(uniform(8.0, 12.0), 2) self.height = round(uniform(45.0, 60.0), 2)
self._add_height_entry() self._add_height_entry()
last_height_entry_time = self.time last_height_entry_time = self.time