summaryrefslogtreecommitdiff
path: root/passlib/context.py
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2020-10-06 21:38:05 -0400
committerEli Collins <elic@assurancetechnologies.com>2020-10-06 21:38:05 -0400
commit1841864071b4de404c74d6c1187b7752cd57691d (patch)
treee0c98faf542307d4a06ec9798e00e05fc007daa1 /passlib/context.py
parent73ab1733ebe4813063ecf96ba9fca028392db7ff (diff)
downloadpasslib-1841864071b4de404c74d6c1187b7752cd57691d.tar.gz
python compat cleanup -- use magic super() calls
Diffstat (limited to 'passlib/context.py')
-rw-r--r--passlib/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/passlib/context.py b/passlib/context.py
index 7fabc77..f210a1f 100644
--- a/passlib/context.py
+++ b/passlib/context.py
@@ -1981,7 +1981,7 @@ class LazyCryptContext(CryptContext):
onload = kwds.pop("onload")
kwds = onload(**kwds)
del self._lazy_kwds
- super(LazyCryptContext, self).__init__(**kwds)
+ super().__init__(**kwds)
self.__class__ = CryptContext
def __getattribute__(self, attr):