You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's bad Python to have from x import * everywhere. We should slowly remove this from the modules and replace with the equivalent correct explicit imports. This is what I think. What do you think experts?
Reasons:
static analysis doesn't work with from x import *
import order may matter without expecting it. in at least one area in ocelot you need to import the modules in the correct order to get desired behaviour.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
It's bad Python to have
from x import *
everywhere. We should slowly remove this from the modules and replace with the equivalent correct explicit imports. This is what I think. What do you think experts?Reasons:
from x import *
Beta Was this translation helpful? Give feedback.
All reactions