Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
ADIMANV committed Sep 27, 2024
1 parent 0d1facf commit cb5a042
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion database-cleanup/database_cleanup/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import uuid
import sentry_sdk
import pkg_resources
my_version = pkg_resources.get_distribution('database-cleanup').version

import click
import sqlalchemy as sa
Expand All @@ -21,6 +20,8 @@

_log = logging.getLogger(__name__)

my_version = pkg_resources.get_distribution('database-cleanup').version

sentry_sdk.init(
dsn=os.getenv("SENTRY_DSN"),
environment=os.getenv("ENVIRONMENT", "local"),
Expand Down
3 changes: 2 additions & 1 deletion forecast-inference/forecast_inference/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from uuid import UUID
import sentry_sdk
import pkg_resources
my_version = pkg_resources.get_distribution('forecast_inference').version

import click
import dotenv
Expand All @@ -26,6 +25,8 @@

_log = logging.getLogger(__name__)

my_version = pkg_resources.get_distribution('forecast_inference').version

sentry_sdk.init(
dsn=os.getenv("SENTRY_DSN"),
environment=os.getenv("ENVIRONMENT", "local"),
Expand Down

0 comments on commit cb5a042

Please sign in to comment.