Skip to content

Commit

Permalink
Merge branch 'rashid/closeable_optimizely' into rashid/polling_interval
Browse files Browse the repository at this point in the history
  • Loading branch information
mariamjamal94 committed Sep 6, 2019
2 parents a281165 + 57c1c32 commit 07c43f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
7 changes: 1 addition & 6 deletions tests/test_event_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,7 @@ def __eq__(self, other):
if other is None:
return False

return (self._experiment_id == other._experiment_id and
self._variation_id == other._variation_id and
self._event_name == other._event_name and
self._visitor_id == other._visitor_id and
self._attributes == other._attributes and
self._tags == other._tags)
return self.__dict__ == other.__dict__


class TestEventDispatcher(object):
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# E121 - continuation line indentation is not a multiple of four
# E127 - continuation line over-indented for visual indent
# E722 - do not use bare 'except'
# W504 - line break after binary operator
ignore = E111,E114,E121,E127,E722,W504
ignore = E111,E114,E121,E127,E722
exclude = optimizely/lib/pymmh3.py,*virtualenv*
max-line-length = 120

0 comments on commit 07c43f5

Please sign in to comment.