Skip to content
Snippets Groups Projects
Commit adfa339f authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix minor bugs

parent fca35beb
No related branches found
No related tags found
No related merge requests found
...@@ -2,3 +2,5 @@ ...@@ -2,3 +2,5 @@
* unit tests migrated to CircleCI * unit tests migrated to CircleCI
* added __len__ to FutureCollection * added __len__ to FutureCollection
* fixed a bug in DictionaryEQAble
* fixed a bug in ListDeleter
__version__ = '2.18.11a1' __version__ = '2.18.11a2'
...@@ -23,4 +23,4 @@ class DictionaryEQAble: ...@@ -23,4 +23,4 @@ class DictionaryEQAble:
for key in self.__dict__.keys(): for key in self.__dict__.keys():
if getattr(other, key, NOT_EQUAL_TO_ANYTHING) != self.__dict__[key]: if getattr(other, key, NOT_EQUAL_TO_ANYTHING) != self.__dict__[key]:
return True return True
return True return False
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment