Skip to content

Commit a73a1ec

Browse files
authored
Update functional.py
1 parent b5db47b commit a73a1ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

umapi_client/functional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def __init__(self, id_type=IdentityTypes.adobeID, email=None, username=None, dom
110110
Action.__init__(self, user=email, useAdobeID=True, **kwargs)
111111
elif username and '@' in username:
112112
Action.__init__(self, user=username, **kwargs)
113-
elif username and '@' not in username::
113+
elif username and '@' not in username:
114114
Action.__init__(self, user=username, domain=self.domain, **kwargs)
115115
else:
116116
Action.__init__(self, user=email, **kwargs)

0 commit comments

Comments
 (0)