Skip to content

Commit

Permalink
Fix revert
Browse files Browse the repository at this point in the history
  • Loading branch information
lyriccoder committed Aug 12, 2020
1 parent f28396a commit 7103177
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions aibolit/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,12 +646,6 @@ def check():
in site-packages and is installed with aibolit automatically''',
default=False
)

parser.add_argument(
'--threshold',
help='threshold for predict',
default=False
)
parser.add_argument(
'--full',
help='show all recommendations instead of the best one',
Expand All @@ -666,13 +660,16 @@ def check():

parser.add_argument(
'--suppress',
default=[]
default=[],
help='Suppress certain patterns (comma separated value)'
)

parser.add_argument(
'--exclude',
action='append',
nargs='+'
nargs='+',
help='Exclude folder to ignore. The last parameter is the folder to exclude, '
'the rest of them are glob patterns.'
)

args = parser.parse_args(sys.argv[2:])
Expand Down

0 comments on commit 7103177

Please sign in to comment.