Skip to content

Commit

Permalink
Fix static typing
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Dec 5, 2023
1 parent 224005f commit a2f4de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/models/channel_type/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
DROP_GA4_CHANNEL_DEFINITION_TABLE_SQL = f"DROP TABLE IF EXISTS ga4_channel_definition ON CLUSTER '{CLICKHOUSE_CLUSTER}'"

TRUNCATE_GA4_CHANNEL_DEFINITION_TABLE_SQL = (
lambda: f"TRUNCATE TABLE IF EXISTS ga4_channel_definition ON CLUSTER '{CLICKHOUSE_CLUSTER}'"
f"TRUNCATE TABLE IF EXISTS ga4_channel_definition ON CLUSTER '{CLICKHOUSE_CLUSTER}'"
)

with open(os.path.join(os.path.dirname(__file__), "ga4_channel_definitions.json"), "r") as f:
Expand Down

0 comments on commit a2f4de9

Please sign in to comment.