Skip to content

Commit

Permalink
chore: remove overzealous escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
Mause committed Aug 21, 2022
1 parent 22ee736 commit ba3fbe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion duckdb_engine/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ def apply_config(
) -> None:
process = String().literal_processor(dialect=dialect)
for k, v in ext.items():
conn.execute(f"SET {process(k)} = {process(v)}")
conn.execute(f"SET {k} = {process(v)}")

0 comments on commit ba3fbe8

Please sign in to comment.