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

Make None optional

parent 11faa429
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,7 @@ class EventBase(object): ...@@ -99,7 +99,7 @@ class EventBase(object):
return d return d
def get(self, key, default): def get(self, key, default=None):
return self._event_dict.get(key, default) return self._event_dict.get(key, default)
def get_internal_metadata_dict(self): def get_internal_metadata_dict(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment