-
Notifications
You must be signed in to change notification settings - Fork 0
Unused Resources
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
1 revision
- Use "_" as name
- If there is other unused variable named "_", append other underscore "__"
✅ Do
for _, value in object_map.items():
...
for _, inner in object_map.items():
for __, value in inner.items():
...
❌ Don't
for unused, value in object_map.items():
...
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources