mirror of
https://github.com/kennethreitz/clint.git
synced 2026-06-05 23:00:18 +00:00
fix for found arg at pos 0
This commit is contained in:
+1
-1
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user