Skip to content

Commit

Permalink
Ruff it
Browse files Browse the repository at this point in the history
  • Loading branch information
Almad committed Dec 29, 2024
1 parent a89d1d2 commit 25c8c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ddcz/migrations/0005_market_dates_20241229_1747.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def migrate_dates(apps, schema_editor):
for market in Market.objects.all():
if not market.published_varchar:
sentry_sdk.capture_message(
f"Market entry without date",
"Market entry without date",
level="error",
extras={
"market_id": market.id,
Expand All @@ -25,7 +25,7 @@ def migrate_dates(apps, schema_editor):
except ValueError:
# If both formats fail, report to Sentry
sentry_sdk.capture_message(
f"Failed to parse date in Market record",
"Failed to parse date in Market record",
level="error",
extras={
"market_id": market.id,
Expand Down

0 comments on commit 25c8c4f

Please sign in to comment.