Skip to content

Commit

Permalink
Automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Github-actions committed Jan 27, 2024
1 parent a434c73 commit ec146f7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wger/manager/tests/test_workout.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ def test_unicode(self):

workout = Workout()
workout.creation_date = datetime.date.today()
self.assertEqual(str(workout), f'Workout ({datetime.date.today()})', )
self.assertEqual(
str(workout),
f'Workout ({datetime.date.today()})',
)

workout.name = 'my description'
self.assertEqual(str(workout), 'my description')
Expand Down

0 comments on commit ec146f7

Please sign in to comment.