summaryrefslogtreecommitdiff
path: root/src/saml2/mongo_store.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/saml2/mongo_store.py')
-rw-r--r--src/saml2/mongo_store.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saml2/mongo_store.py b/src/saml2/mongo_store.py
index 0cc33619..7df1b565 100644
--- a/src/saml2/mongo_store.py
+++ b/src/saml2/mongo_store.py
@@ -321,7 +321,7 @@ class EptidMDB(Eptid):
raise CorruptDatabase("Found more than one EPTID document")
def __setitem__(self, key, value):
- _ = self.mdb.store(key, **{"eptid": value})
+ self.mdb.store(key, **{"eptid": value})
#------------------------------------------------------------------------------