Skip to content
Snippets Groups Projects
Commit ca580ef8 authored by Erik Johnston's avatar Erik Johnston
Browse files

Don't copy twice

parent 45bac680
No related branches found
No related tags found
No related merge requests found
...@@ -131,7 +131,7 @@ class FrozenEvent(EventBase): ...@@ -131,7 +131,7 @@ class FrozenEvent(EventBase):
if USE_FROZEN_DICTS: if USE_FROZEN_DICTS:
frozen_dict = freeze(event_dict) frozen_dict = freeze(event_dict)
else: else:
frozen_dict = dict(event_dict) frozen_dict = event_dict
super(FrozenEvent, self).__init__( super(FrozenEvent, self).__init__(
frozen_dict, frozen_dict,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment