Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilbert09 committed Jul 23, 2024
1 parent 7b9dbba commit 3acd08f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ def sql_source_for_type(
f"postgresql://{user}:{password}@{host}:{port}/{database}?sslmode={sslmode}"
)
elif source_type == ExternalDataSource.Type.MYSQL:
credentials = ConnectionStringCredentials(
f"mysql+pymysql://{user}:{password}@{host}:{port}/{database}"
)
credentials = ConnectionStringCredentials(f"mysql+pymysql://{user}:{password}@{host}:{port}/{database}")
else:
raise Exception("Unsupported source_type")

Expand Down

0 comments on commit 3acd08f

Please sign in to comment.