We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e755397 commit aa9ed64Copy full SHA for aa9ed64
zxcvbn/matching.py
@@ -100,6 +100,8 @@ def wrapper(*args, **kwargs):
100
def omnimatch(password, _ranked_dictionaries=None, user_inputs=[]):
101
if len(user_inputs):
102
_ranked_dictionaries['user_inputs'] = build_ranked_dict(user_inputs)
103
+ elif 'user_inputs' in _ranked_dictionaries:
104
+ del(_ranked_dictionaries['user_inputs'])
105
106
matches = []
107
for matcher in [
0 commit comments