Fix variable import: from x import y -> import x
"from x import y" is equivalent to "import x; y = x.y" This can cause problems with order import if later modified from different script.
Loading
Please register or sign in to comment
"from x import y" is equivalent to "import x; y = x.y" This can cause problems with order import if later modified from different script.