Skip to content

Commit

Permalink
CodeQL changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rkingsbury committed Jul 31, 2023
1 parent e1fea26 commit 38d252b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/maggma/stores/mongolike.py
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ def __init__(self, collection_name: str = "memory_db", **kwargs):
self.default_sort = None
self._coll = None
self.kwargs = kwargs
super(MongoStore, self).__init__(**kwargs)
super().__init__(**kwargs)

def connect(self, force_reset: bool = False):
"""
Expand Down Expand Up @@ -911,7 +911,7 @@ def __init__(
"mongo_version": "4.0",
}
self.client_kwargs = client_kwargs or {}
super(MongoStore, self).__init__(**kwargs)
super().__init__(**kwargs)

def connect(self, force_reset: bool = False):
"""
Expand Down

0 comments on commit 38d252b

Please sign in to comment.