diff --git a/clint/arguments.py b/clint/arguments.py index b261c2e..76d643e 100644 --- a/clint/arguments.py +++ b/clint/arguments.py @@ -90,7 +90,7 @@ class Args(object): def _remove(x): found = self.first(x) - if found: + if found is not None: self._args.pop(found) if is_collection(x):