Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed May 2, 2024
1 parent b11e104 commit 7374689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ms2pip/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def predict_single(*args, **kwargs):
def predict_batch(*args, **kwargs):
# Parse arguments
output_name = kwargs.pop("output_name")
output_format = kwargs.pop("output_format")
output_format = kwargs.pop("output_format") # noqa F841 TODO
output_name = _infer_output_name(kwargs["psms"], output_name)

# Run
Expand Down

0 comments on commit 7374689

Please sign in to comment.