Skip to content

Commit

Permalink
chore: ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Nov 10, 2024
1 parent c5e2708 commit a0025bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/generate_test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def gen_todo(parent):
urgency=urgency,
pending=randint(1, 3) == 3,
recurrence=timedelta(days=randint(1, 30)) if randint(0, 10) == 5 else None,
effort = randint(1, 10)
effort=randint(1, 10),
)

if isinstance(parent, Todo):
Expand Down

0 comments on commit a0025bc

Please sign in to comment.