Importing a module twice using the import xxx and from xxx import yyy is confusing.

Remove the from xxx import yyy statement. Add yyy = xxx.yyy if required.

  • Python Language Reference: The import statement.