Skip to content

Commit

Permalink
squash! Fix issue PyCQA#595
Browse files Browse the repository at this point in the history
  • Loading branch information
ehooo committed Dec 14, 2020
1 parent 329e969 commit 2f50dad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bandit/cli/main.py
Expand Up @@ -179,12 +179,12 @@ def main():
parser.add_argument(
'-l', '--level', dest='severity', action='count',
default=None, help='report only issues of a given severity level or '
'higher (-l for LOW, -ll for MEDIUM, -lll for HIGH)'
'higher (-l for LOW, -ll for MEDIUM, -lll for HIGH)'
)
parser.add_argument(
'-i', '--confidence', dest='confidence', action='count',
default=None, help='report only issues of a given confidence level or '
'higher (-i for LOW, -ii for MEDIUM, -iii for HIGH)'
'higher (-i for LOW, -ii for MEDIUM, -iii for HIGH)'
)
output_format = 'screen' if sys.stdout.isatty() else 'txt'
parser.add_argument(
Expand Down

0 comments on commit 2f50dad

Please sign in to comment.