Skip to content

Commit

Permalink
fix path concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Dec 10, 2024
1 parent 01cfcea commit 1538734
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ def start(
if output_type == "parquet":
select_query = f"from {table}"
if custom_sql_dir:
custom_sql_query_path = (
pathlib.Path(custom_sql_dir) / table + ".sql"
custom_sql_query_path = pathlib.Path(custom_sql_dir) / (
table + ".sql"
)
if custom_sql_query_path.exists():
with custom_sql_query_path.open() as f:
Expand Down

0 comments on commit 1538734

Please sign in to comment.