Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
RunningLeon committed Apr 12, 2021
1 parent 64757fc commit 5ff17c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/pytorch2onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,10 @@ def parse_args():
parser.add_argument('--checkpoint', help='checkpoint file', default=None)
parser.add_argument(
'--input-img', type=str, help='Images for input', default=None)
parser.add_argument('--show', action='store_true', help='show onnx graph and segmentation results')
parser.add_argument(
'--show',
action='store_true',
help='show onnx graph and segmentation results')
parser.add_argument(
'--verify', action='store_true', help='verify the onnx model')
parser.add_argument('--output-file', type=str, default='tmp.onnx')
Expand Down

0 comments on commit 5ff17c7

Please sign in to comment.