Skip to content

Commit

Permalink
Fix a linting failure (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhelba committed Aug 3, 2021
1 parent 899739c commit 6c32d60
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion opengeo/core/migrations/0001_default_site.py
Expand Up @@ -13,7 +13,8 @@ def update_default_site(apps: StateApps, schema_editor: BaseDatabaseSchemaEditor
# If this is an existing database, the sites app will likely have created an default site
# object already.
Site.objects.update_or_create(
pk=settings.SITE_ID, defaults={'domain': 'www.resonantgeodata.com', 'name': 'ResonantGeoData'}
pk=settings.SITE_ID,
defaults={'domain': 'www.resonantgeodata.com', 'name': 'ResonantGeoData'},
)


Expand Down

0 comments on commit 6c32d60

Please sign in to comment.