Skip to content

Commit 3f0b532

Browse files
Final pylint corrections.
1 parent b930654 commit 3f0b532

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

timezone_utils/fields.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
# ==============================================================================
3333
# MODEL FIELDS
3434
# ==============================================================================
35-
class TimeZoneField(
35+
class TimeZoneField( # pylint: disable=E0239
3636
with_metaclass(TimeZoneFieldBase, CharField)
37-
): # pylint: disable=E0239
37+
):
3838
# Enforce the minimum length of max_length to be the length of the longest
3939
# pytz timezone string
4040
MIN_LENGTH = max(map(len, pytz.all_timezones))

0 commit comments

Comments
 (0)