diff options
author | Simon Charette <charettes@users.noreply.github.com> | 2017-01-19 02:39:46 -0500 |
---|---|---|
committer | Claude Paroz <claude@2xlibre.net> | 2017-01-19 08:39:46 +0100 |
commit | cecc079168e8669138728d31611ff3a1e7eb3a9f (patch) | |
tree | 2415083d44f84c6f206930fc689a8c0e50a98caa /django/db/backends/sqlite3/introspection.py | |
parent | a5563963397aeee30c32e3c1dab31bfe453ca89f (diff) | |
download | django-cecc079168e8669138728d31611ff3a1e7eb3a9f.tar.gz |
Refs #23919 -- Stopped inheriting from object to define new style classes.
Diffstat (limited to 'django/db/backends/sqlite3/introspection.py')
-rw-r--r-- | django/db/backends/sqlite3/introspection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/introspection.py b/django/db/backends/sqlite3/introspection.py index 7d24ca6f26..730793879d 100644 --- a/django/db/backends/sqlite3/introspection.py +++ b/django/db/backends/sqlite3/introspection.py @@ -18,7 +18,7 @@ def get_field_size(name): # This light wrapper "fakes" a dictionary interface, because some SQLite data # types include variables in them -- e.g. "varchar(30)" -- and can't be matched # as a simple dictionary lookup. -class FlexibleFieldLookupDict(object): +class FlexibleFieldLookupDict: # Maps SQL types to Django Field types. Some of the SQL types have multiple # entries here because SQLite allows for anything and doesn't normalize the # field type; it uses whatever was given. |