Skip to content

Commit

Permalink
remove dashes from fake data uuid to represent reality
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeJasinski committed Apr 16, 2024
1 parent 0d5102b commit b1c93b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chipy_org/dev_utils/management/commands/makedevdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def handle(self, *args, **options):

# Add a bunch of past meetings too for pagination testing
for _ in range(10):
meeting_id = str(uuid.uuid4())
meeting_id = str(uuid.uuid4()).replace("-", "")
random_days_ago = random.randint(10, 30)
meeting_date = now - timedelta(days=random_days_ago)
meeting_description = f"Dev meeting{random.randint(1000, 2000)}"
Expand Down

0 comments on commit b1c93b1

Please sign in to comment.