Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
awmatheson committed Aug 7, 2024
1 parent e308028 commit b3efed0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/bytewax/clickhouse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ def __init__(
table_exists_query = f"EXISTS {self.database}.{self.table_name}"
table_exists = client.command(table_exists_query)
if not table_exists:
logger.info(f"""Table '{self.table_name}' does not exist.
Attempting to create with provided schema""")
logger.info(
f"""Table '{self.table_name}' does not exist.
Attempting to create with provided schema"""
)
if schema:
# Create the table with ReplacingMergeTree
create_table_query = f"""
Expand Down

0 comments on commit b3efed0

Please sign in to comment.