Skip to content

Commit

Permalink
fixed linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidDudas-Intuitial committed Nov 13, 2024
1 parent 019c95d commit c9f1603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analytics/src/analytics/integrations/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_db() -> Engine:
url = f"postgresql+psycopg://{db.user}:{token}@{db.db_host}:{db.port}?sslmode={db.ssl_mode}"
print(f"TEMP DEBUG: environment = {os.getenv('ENVIRONMENT', 'local')}")
print(f"TEMP DEBUG: db settings = {db}")
print(f"TEMP DEBUG: token has non-zero len? {len(token) > 0}")
print(f"TEMP DEBUG: token has non-zero len? {len(str(token)) > 0}")

return create_engine(
url,
Expand Down

0 comments on commit c9f1603

Please sign in to comment.