diff options
author | Frederick Muriuki Muriithi | 2021-11-01 08:17:41 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-11-04 12:45:57 +0300 |
commit | 4ecaae288c78f8c3b4b6b40b56de3ba392ecc1bd (patch) | |
tree | 0cc7a53fdb34e33d683df577abfaf2db2059f9ff /gn3 | |
parent | ff23701bbfd90799f04fdf21c482f113bb408e34 (diff) | |
download | genenetwork3-4ecaae288c78f8c3b4b6b40b56de3ba392ecc1bd.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')
-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. |