Replace tabs with spaces

This commit is contained in:
Stephen Kappel
2015-03-18 15:38:57 -04:00
parent bc72b26c4f
commit 2447371d26

View File

@@ -151,10 +151,10 @@ class multi_key_dict(object):
key_type = str(type(k))
if (key_type in self.__dict__ and k in self.__dict__[key_type]):
del self.__dict__[key_type][k]
# remove the reference from the given key
# remove the reference from the given key
del self.__dict__[key_type][key]
else:
raise KeyError(key)