blob: 6bfeafe1fcc8bb3ea1037a382e7e03379558b919 (
plain) (
tree)
|
|
# Copyright 2016 (c) Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "Simple image filters" project.
# For details, see https://github.com/egor-tensin/filters.
# Distributed under the MIT License.
import argparse
def parse_non_negative_integer(s):
try:
x = int(s)
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
|