Skip to content

Commit 31e16c1

Browse files
committed
Negligible style fix.
1 parent 9dcd537 commit 31e16c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django/db/models/fields/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ def __init__(self, verbose_name=None, name=None, primary_key=False,
114114
self.default = default
115115
self.editable = editable
116116
self.serialize = serialize
117-
self.unique_for_date, self.unique_for_month = (unique_for_date,
118-
unique_for_month)
117+
self.unique_for_date = unique_for_date
118+
self.unique_for_month = unique_for_month
119119
self.unique_for_year = unique_for_year
120120
self._choices = choices or []
121121
self.help_text = help_text

0 commit comments

Comments
 (0)