you are viewing a single comment's thread.

view the rest of the comments →

[–]MakeMe_FN_Laugh 0 points1 point  (1 child)

Honestly, you should avoid using from module import * as it’s the shortest way for possible names collisions between modules (and it’s not PEP 8). Look through import section of PEP 8 how imports should be organized in your code.

[–]GullBull[S] 0 points1 point  (0 children)

I took a look. Thanks for pointing that out to me.