Skip to content

Commit

Permalink
Update load csv docstring (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
imilinovic authored Jul 9, 2024
1 parent 651240c commit e3f1b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gqlalchemy/query_builders/memgraph_query_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def load_csv(self, path: str, header: bool, row: str) -> "DeclarativeBase":
"""Load data from a CSV file by executing a Cypher query for each row.
Args:
path: A string representing the path to the CSV file.
path: A string representing the path to the CSV file. If beginning with `http://`, `https://`, or `ftp://`, the CSV file will be fetched over the network.
header: A bool indicating if the CSV file starts with a header row.
row: A string representing the name of the variable for iterating
over each row.
Expand Down

0 comments on commit e3f1b61

Please sign in to comment.