Skip to content

Commit a117393

Browse files
committed
lint
1 parent 8315354 commit a117393

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

kb_python/count.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,16 @@
8989

9090
def make_transcript_t2g(
9191
txnames_path: str, out_path: str
92-
) -> str:
92+
) -> str:
9393
"""Make a two-column t2g file from a transcripts file
94-
95-
Args:
94+
95+
Args:
9696
txnames_path: Path to transcripts.txt
9797
out_path: Path to output t2g file
98-
99-
Returns:
100-
Path to output t2g file
101-
"""
98+
99+
Returns:
100+
Path to output t2g file
101+
"""
102102
with open_as_text(txnames_path, 'r') as f, open_as_text(out_path,
103103
'w') as out:
104104
for line in f:

kb_python/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,7 @@ def setup_count_args(
12491249
'Only exact matches are used for matching barcodes to on-list.'
12501250
),
12511251
action='store_true'
1252-
)
1252+
)
12531253
parser_count.add_argument(
12541254
'-r',
12551255
metavar='REPLACEMENT',

0 commit comments

Comments
 (0)