summaryrefslogtreecommitdiff
path: root/django/forms/fields.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms/fields.py')
-rw-r--r--django/forms/fields.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/forms/fields.py b/django/forms/fields.py
index 94a7bbbfc2..20521b26ea 100644
--- a/django/forms/fields.py
+++ b/django/forms/fields.py
@@ -44,7 +44,7 @@ __all__ = (
)
-class Field(object):
+class Field:
widget = TextInput # Default widget to use when rendering this type of Field.
hidden_widget = HiddenInput # Default widget to use when rendering this as "hidden".
default_validators = [] # Default set of validators
@@ -755,7 +755,7 @@ class NullBooleanField(BooleanField):
pass
-class CallableChoiceIterator(object):
+class CallableChoiceIterator:
def __init__(self, choices_func):
self.choices_func = choices_func