Klocwork Documentation | 2025.4
PY3.R0402
Consider using from import
Emitted when a submodule/member of a package is imported and aliased with thesame name.
E.g., instead of import pandas.DataFrame as DataFrame usefrom pandas import DataFrame
Noncompliant Code:
Compliant Code: