1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

Removed unused variable in test_datetimefield_clean_input_formats.

This commit is contained in:
David Smith 2020-05-20 05:02:28 +01:00 committed by GitHub
parent a125da6a7c
commit e875fac886
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,6 @@ class DateTimeFieldTest(SimpleTestCase):
),
)),
]
f = DateTimeField()
for input_format, values in tests:
f = DateTimeField(input_formats=[input_format])
for value, expected_datetime in values: