File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ def parse_query(query: str) -> list[str]:
63
63
tokens .append (token )
64
64
token = ""
65
65
66
- # For all other characters.
67
66
else :
68
67
token += char
69
68
@@ -153,7 +152,7 @@ def export_to_file(data: pd.DataFrame, file: Path) -> None:
153
152
if export_method == "to_json" :
154
153
kwargs ["indent" ] = 4
155
154
156
- # Exports search records to the specified file with a suitable method.
155
+ # Exports search records to the specified file with the specified method.
157
156
getattr (data , export_method )(file , ** kwargs )
158
157
159
158
@@ -216,7 +215,7 @@ def export_to_sql(data: pd.DataFrame, database: str) -> None:
216
215
# Prompts for replacement if the specified table already exists in the database.
217
216
if table in metadata :
218
217
force : str = input (
219
- "The specified table already exist , would you like to alter it? (Y/N) "
218
+ "The specified table already exists , would you like to alter it? (Y/N) "
220
219
)
221
220
222
221
if force .lower () != "y" :
You can’t perform that action at this time.
0 commit comments