aboutsummaryrefslogtreecommitdiff
path: root/gn3/data_helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/data_helpers.py')
-rw-r--r--gn3/data_helpers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gn3/data_helpers.py b/gn3/data_helpers.py
index 741a885..d3f942b 100644
--- a/gn3/data_helpers.py
+++ b/gn3/data_helpers.py
@@ -25,7 +25,8 @@ def partition_all(num: int, items: Sequence[Any]) -> Tuple[Tuple[Any, ...], ...]
__compute_start_stop__, iterations, tuple())])
def parse_csv_line(
- line:str, delimiter: str = ",", quoting:Optional[str] = '"') -> Tuple[str, ...]:
+ line: str, delimiter: str = ",",
+ quoting: Optional[str] = '"') -> Tuple[str, ...]:
"""
Parses a line from a CSV file into a tuple of strings.