fix traceback
This commit is contained in:
parent
d9b067615a
commit
486fc72f4c
|
@ -27,10 +27,10 @@
|
||||||
from types import *
|
from types import *
|
||||||
|
|
||||||
def remove(sequence, target):
|
def remove(sequence, target):
|
||||||
if isinstance(sequence, ListType):
|
if isinstance(sequence, list):
|
||||||
if target in sequence:
|
if target in sequence:
|
||||||
sequence.remove(target)
|
sequence.remove(target)
|
||||||
elif isinstance(sequence, DictType):
|
elif isinstance(sequence, dict):
|
||||||
if target in sequence:
|
if target in sequence:
|
||||||
del sequence[target]
|
del sequence[target]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue