Skip to content

Commit 0c2fd0d

Browse files
committed
fix typo
1 parent 32a80b2 commit 0c2fd0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mongoengine/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def _get_connection_settings(
166166
kwargs.pop("slaves", None)
167167
kwargs.pop("is_slave", None)
168168

169-
keys = set(key.lower for key in kwargs.keys())
169+
keys = set(key.lower() for key in kwargs.keys())
170170
if "uuidrepresentation" not in keys:
171171
warnings.warn(
172172
"No uuidRepresentation is specified! Falling back to "

0 commit comments

Comments
 (0)