Skip to content

Files

Latest commit

 

History

History
7 lines (4 loc) · 246 Bytes

consider-using-from-import.md

File metadata and controls

7 lines (4 loc) · 246 Bytes

Pattern: Missing use of from import

Issue: -

Description

Emitted when a submodule/member of a package is imported and aliased with the same name. E.g., instead of import pandas.DataFrame as DataFrame use from pandas import DataFrame.