-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
createusersdata/create_first_name.py
Line 8 in 7baef06
| if names != None and type(names) == dict: |
Implementing type(s) checks this way violates PEP-8 rules and has code smells.
The more Python way to do the stuff is:
if isinstance(names, dict):komanch7
Metadata
Metadata
Assignees
Labels
No labels