diff options
author | Frederick Muriuki Muriithi | 2021-11-01 08:17:41 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2021-11-01 08:17:41 +0300 |
commit | d4919b2b59facb79ccad155e1d2826a97119ec28 (patch) | |
tree | 2d1040d63b3c0db4bf43b5185b84e1bdbfad0555 /gn3/data_helpers.py | |
parent | 21c8c341956bb3c9cac427ab5b951976d70f4245 (diff) | |
download | genenetwork3-d4919b2b59facb79ccad155e1d2826a97119ec28.tar.gz |
Fix some linting errors
Issue:
https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi
Diffstat (limited to 'gn3/data_helpers.py')
-rw-r--r-- | gn3/data_helpers.py | 3 |
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. |