Skip to content

Commit ed741f8

Browse files
committed
style: Consistently use double quotes for strings in duckdb_handler and connection_args
1 parent 62ff0df commit ed741f8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

mindsdb/integrations/handlers/duckdb_handler/connection_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
database="sample_data",
2525
read_only=True,
2626
motherduck_token="ey...enKoT.SsEcCa......",
27-
)
27+
)

mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,4 @@ def get_columns(self, table_name: str) -> Response:
168168
"""
169169

170170
query = f"DESCRIBE {table_name};"
171-
return self.native_query(query)
171+
return self.native_query(query)

0 commit comments

Comments
 (0)