Skip to content

Commit 6b37b60

Browse files
committed
Fix linting issues
1 parent ce0fc94 commit 6b37b60

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/isal/igzip.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,9 @@ def _argument_parser():
434434
help="Decompress the file instead of compressing.")
435435
output_group = parser.add_mutually_exclusive_group()
436436
output_group.add_argument("-c", "--stdout", action="store_true",
437-
help="write on standard output")
438-
output_group.add_argument("-o", "--output", help="Write to this output file")
437+
help="write on standard output")
438+
output_group.add_argument("-o", "--output",
439+
help="Write to this output file")
439440
parser.add_argument("-f", "--force", action="store_true",
440441
help="Overwrite output without prompting")
441442
# -b flag not taken by either gzip or igzip. Hidden attribute. Above 32K

tests/test_igzip.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ def test_compress_infile_out_file_inmplicit_name_prompt_accept(
234234
assert err == b""
235235

236236

237-
238237
def test_decompress():
239238
assert igzip.decompress(COMPRESSED_DATA) == DATA
240239

0 commit comments

Comments
 (0)