Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyam Dwaraknath committed Jan 28, 2020
1 parent 60de246 commit 5aeec62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maggma/stores/mongolike.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def __init__(self, uri: str, database: str, collection_name: str, **kwargs):
self.collection_name = collection_name
self.kwargs = kwargs
self._collection = None
super(MongoStore).__init__(**kwargs)
super(MongoStore, self).__init__(**kwargs)

@property
def name(self) -> str:
Expand Down

0 comments on commit 5aeec62

Please sign in to comment.