Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Jun 7, 2024
1 parent 3e7167d commit 593c7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/Calculate Age/tests/test_calculate_age.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_age_calculator_negative_age():
assert str(e) == "Please input a positive number."


@patch('time.time', return_value=1621848668.0)
@patch("time.time", return_value=1621848668.0)
def test_age_calculator_leap_year(mock_time):
"""
Test the age_calculator function considering leap years
Expand Down

0 comments on commit 593c7d2

Please sign in to comment.