diff options
author | Frederick Muriuki Muriithi | 2024-10-24 16:05:08 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-10-24 16:05:08 -0500 |
commit | 42b743a5ef07d3c75524df3e58acd65e9f85456f (patch) | |
tree | 5bbe889dd0792bb78aa8987dcf15e21b44f30ec2 /r_qtl/r_qtl2.py | |
parent | 5a3fb0f96a29666ef3ce698b76d49c1c1178a7f6 (diff) | |
download | gn-uploader-42b743a5ef07d3c75524df3e58acd65e9f85456f.tar.gz |
Fix linting and typing errors.
Diffstat (limited to 'r_qtl/r_qtl2.py')
-rw-r--r-- | r_qtl/r_qtl2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/r_qtl/r_qtl2.py b/r_qtl/r_qtl2.py index 5b926d1..c6307f5 100644 --- a/r_qtl/r_qtl2.py +++ b/r_qtl/r_qtl2.py @@ -566,7 +566,7 @@ def read_text_file(filepath: Union[str, Path]) -> Iterator[str]: def read_csv_file(filepath: Union[str, Path], separator: str = ",", - comment_char: str = "#") -> Iterator[str]: + comment_char: str = "#") -> Iterator[tuple[str, ...]]: """Read a file as a csv file.""" for line in read_text_file(filepath): if line.startswith(comment_char): |