Skip to content

Commit

Permalink
Lint: remove unused arg
Browse files Browse the repository at this point in the history
And that's why you shouldn't push directly to `main`...
  • Loading branch information
mfogel committed Jun 18, 2023
1 parent 7c1b537 commit fa4dd7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_serializer_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_invalid_str(TimeZoneSerializer, invalid_tz):


# https://github.com/mfogel/django-timezone-field/issues/86
def test_empty_str(TimeZoneSerializer, invalid_tz):
def test_empty_str(TimeZoneSerializer):
serializer = TimeZoneSerializer(data={"tz": ""})
assert not serializer.is_valid()

Expand Down

0 comments on commit fa4dd7c

Please sign in to comment.