Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmshn committed Mar 5, 2022
1 parent b2ac398 commit 515c74f
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 @@ -567,7 +567,7 @@ def connect(self, force_reset: bool = False):
Connect to the source data
"""
if self._coll is None or force_reset: # pragma: no cover
conn = MongoClient(self.uri, self.mongodb_client_kwargs)
conn = MongoClient(self.uri, **self.mongodb_client_kwargs)
db = conn[self.database]
self._coll = db[self.collection_name]

Expand Down

0 comments on commit 515c74f

Please sign in to comment.