Compare commits

..

1 Commits

Author SHA1 Message Date
pixeebot[bot]
8d253c2e27 Remove Unnecessary F-strings 2025-05-13 03:35:14 +00:00
3 changed files with 5 additions and 6 deletions

View File

@@ -165,13 +165,13 @@ class Park(TrackedModel):
print(f"Found park from historical slug: {park.name}") print(f"Found park from historical slug: {park.name}")
return park, True return park, True
except cls.DoesNotExist: except cls.DoesNotExist:
print(f"Park not found for historical slug record") print("Park not found for historical slug record")
pass pass
else: else:
print("No historical slug record found") print("No historical slug record found")
# Try pghistory events # Try pghistory events
print(f"Searching pghistory events") print("Searching pghistory events")
event_model = getattr(cls, 'event_model', None) event_model = getattr(cls, 'event_model', None)
if event_model: if event_model:
historical_event = event_model.objects.filter( historical_event = event_model.objects.filter(
@@ -185,7 +185,7 @@ class Park(TrackedModel):
print(f"Found park from pghistory: {park.name}") print(f"Found park from pghistory: {park.name}")
return park, True return park, True
except cls.DoesNotExist: except cls.DoesNotExist:
print(f"Park not found for pghistory event") print("Park not found for pghistory event")
pass pass
else: else:
print("No pghistory event found") print("No pghistory event found")

View File

@@ -94,7 +94,7 @@ class ParkModelTests(TestCase):
historical_records = event_model.objects.filter( historical_records = event_model.objects.filter(
pgh_obj_id=park.id pgh_obj_id=park.id
).order_by('-pgh_created_at') ).order_by('-pgh_created_at')
print(f"\nPG History records:") print("\nPG History records:")
for record in historical_records: for record in historical_records:
print(f"- Event ID: {record.pgh_id}") print(f"- Event ID: {record.pgh_id}")
print(f" Name: {record.name}") print(f" Name: {record.name}")

View File

@@ -226,4 +226,3 @@ TAILWIND_CLI_DIST_CSS = os.path.join(BASE_DIR, "static/css/tailwind.css")
TURNSTILE_SITE_KEY = "0x4AAAAAAAyqVp3RjccrC9Kz" TURNSTILE_SITE_KEY = "0x4AAAAAAAyqVp3RjccrC9Kz"
TURNSTILE_SECRET_KEY = "0x4AAAAAAAyqVrQolYsrAFGJ39PXHJ_HQzY" TURNSTILE_SECRET_KEY = "0x4AAAAAAAyqVrQolYsrAFGJ39PXHJ_HQzY"
TURNSTILE_VERIFY_URL = "https://challenges.cloudflare.com/turnstile/v0/siteverify" TURNSTILE_VERIFY_URL = "https://challenges.cloudflare.com/turnstile/v0/siteverify"
SESSION_COOKIE_SECURE = True