diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-10 10:24:42 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-10 10:24:42 +0300 |
commit | 27e36a6dd2546731c37fcc42bb372ad9a552e410 (patch) | |
tree | 0e6b1a89932cbcfe9db9b798a2b8949b26d187f7 /bin | |
parent | code style (diff) | |
download | filters-27e36a6dd2546731c37fcc42bb372ad9a552e410.tar.gz filters-27e36a6dd2546731c37fcc42bb372ad9a552e410.zip |
fix Pylint warnings
Diffstat (limited to 'bin')
-rw-r--r-- | bin/shift.py | 6 | ||||
-rw-r--r-- | bin/utils/cmd_line.py | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/bin/shift.py b/bin/shift.py index 94db333..b837c53 100644 --- a/bin/shift.py +++ b/bin/shift.py @@ -25,11 +25,11 @@ def _main_shift( else: image.save(output_path, output) -def _parse_direction(s): +def _parse_direction(src): try: - return Direction(s) + return Direction(src) except ValueError: - raise argparse.ArgumentTypeError('invalid direction: ' + s) + raise argparse.ArgumentTypeError('invalid direction: ' + src) def _parse_args(args=sys.argv): parser = argparse.ArgumentParser( diff --git a/bin/utils/cmd_line.py b/bin/utils/cmd_line.py index 6bfeafe..43f7bca 100644 --- a/bin/utils/cmd_line.py +++ b/bin/utils/cmd_line.py @@ -5,11 +5,11 @@ import argparse -def parse_non_negative_integer(s): +def parse_non_negative_integer(src): try: - x = int(s) + n = int(src) except ValueError: - raise argparse.ArgumentTypeError('must be a non-negative integer: ' + s) - if x < 0: - raise argparse.ArgumentTypeError('must be a non-negative integer: ' + s) - return x + raise argparse.ArgumentTypeError('must be a non-negative integer: ' + src) + if n < 0: + raise argparse.ArgumentTypeError('must be a non-negative integer: ' + src) + return n |