Skip to content

Import Alias

Vinicius Reif Biavatti edited this page Jul 25, 2022 · 1 revision
  • Try to avoid using alias since it can difficult the understanding of the imported resource usage
  • If it is needed, use good representation names, not acronyms

✅ Do

import sys as system

from typing import TYPE_CHECKING as TYPE_CHECK

❌ Don't

from sys as s

from typing import TYPE_CHECKING as TC
Clone this wiki locally