diff options
| author | Daniele Procida <daniele@vurt.org> | 2013-03-13 21:26:15 +0000 |
|---|---|---|
| committer | Daniele Procida <daniele@vurt.org> | 2013-03-13 21:26:15 +0000 |
| commit | a4c9a4a5fe99e8c0bdc3d82eb7b6326150404792 (patch) | |
| tree | 69a561a99ce2288129fa907489ef9c64ad525c5c | |
| parent | 962f133f72abe2a1174d48baa52aa8549762a022 (diff) | |
removed unused BLANK_CHOICE_NONE
| -rw-r--r-- | django/db/models/fields/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index 94abfd784c..2cd509e9ed 100644 --- a/django/db/models/fields/__init__.py +++ b/django/db/models/fields/__init__.py @@ -29,7 +29,6 @@ class NOT_PROVIDED: # The values to use for "blank" in SelectFields. Will be appended to the start # of most "choices" lists. BLANK_CHOICE_DASH = [("", "---------")] -BLANK_CHOICE_NONE = [("", "None")] class FieldDoesNotExist(Exception): pass |
