https://github.com/komanch7/createusersdata/blob/7baef0630a9f392da76931b8b4bdedc86822d1d1/create_first_name.py#L8 Implementing type(s) checks this way violates PEP-8 rules and has code smells. The more Python way to do the stuff is: ```python if isinstance(names, dict): ```
createusersdata/create_first_name.py
Line 8 in 7baef06
Implementing type(s) checks this way violates PEP-8 rules and has code smells.
The more Python way to do the stuff is: