pylint-errors

W0401 (wildcard-import)

:x: Problematic code:

from flask import *

:heavy_check_mark: Correct code:

from flask import Flask

Rationale:

This is a bad practice because it clutters namespace with unneeded modules, packages, variables, etc. Moreover, it takes time to load them too.