-
Notifications
You must be signed in to change notification settings - Fork 0
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
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources