Skip to content

Commit

Permalink
test: Fix models.W042 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Dec 10, 2023
1 parent 85758b8 commit fff54c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
},
},
],
DEFAULT_AUTO_FIELD='django.db.models.BigAutoField',
ROOT_URLCONF='boundaries.urls',
)
django.setup()
Expand Down
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
},
]

DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

if 'GDAL_LIBRARY_PATH' in os.environ:
GDAL_LIBRARY_PATH = os.getenv('GDAL_LIBRARY_PATH')
Expand Down

0 comments on commit fff54c9

Please sign in to comment.