Skip to content

Commit 0849615

Browse files
committed
string fix
1 parent f99fe46 commit 0849615

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/graphnet/data/sqlite/sqlite_utilities.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def save_to_sql(df: pd.DataFrame, table_name: str, database: str):
3232
df.to_sql(table_name, con=engine, index=False, if_exists="append")
3333
engine.dispose()
3434

35+
3536
def attach_index(database: str, table_name: str):
3637
"""Attaches the table index. Important for query times!"""
3738
code = (
@@ -58,7 +59,7 @@ def create_table(
5859
table_name (str): name of the table
5960
columns (str): the names of the columns of the table
6061
is_pulse_map (bool, optional): whether or not this is a pulse map table. Defaults to False.
61-
62+
"""
6263
query_columns = list()
6364
for column in df.columns:
6465
if column == "event_no":

0 commit comments

Comments
 (0)