Skip to content

Commit 2ce5e5b

Browse files
committed
fix: code linting
1 parent 4d1cc4a commit 2ce5e5b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

geonode/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2183,4 +2183,4 @@ def get_geonode_catalogue_service():
21832183

21842184
PROJECT_FIXTURES = [
21852185
# List project-related fixture files here, in the order they should be loaded.
2186-
]
2186+
]

tasks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,8 @@ def fixtures(ctx):
352352

353353
# Loading additional project fixtures
354354
from django.conf import settings
355-
project_fixtures = getattr(settings, 'PROJECT_FIXTURES', [])
355+
356+
project_fixtures = getattr(settings, "PROJECT_FIXTURES", [])
356357

357358
for fixture in project_fixtures:
358359
if fixture:

0 commit comments

Comments
 (0)