aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/utils/cmd_line.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-10-11 21:18:17 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-10-11 21:18:17 +0300
commitb6a064bd0ff0ae8e22d4b37607ac6908f883776a (patch)
treeab624a1810cd8c3069332b7f986d5e47c56a18e6 /bin/utils/cmd_line.py
parentREADME update (diff)
downloadfilters-b6a064bd0ff0ae8e22d4b37607ac6908f883776a.tar.gz
filters-b6a064bd0ff0ae8e22d4b37607ac6908f883776a.zip
revert most of the recent Pylint fixes
I know better how to name my things.
Diffstat (limited to '')
-rw-r--r--bin/utils/cmd_line.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/utils/cmd_line.py b/bin/utils/cmd_line.py
index 43f7bca..02c596c 100644
--- a/bin/utils/cmd_line.py
+++ b/bin/utils/cmd_line.py
@@ -5,11 +5,11 @@
import argparse
-def parse_non_negative_integer(src):
+def parse_non_negative_integer(s):
try:
- n = int(src)
+ n = int(s)
except ValueError:
- raise argparse.ArgumentTypeError('must be a non-negative integer: ' + src)
+ raise argparse.ArgumentTypeError('must be a non-negative integer: ' + s)
if n < 0:
- raise argparse.ArgumentTypeError('must be a non-negative integer: ' + src)
+ raise argparse.ArgumentTypeError('must be a non-negative integer: ' + s)
return n