You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Indentation: 4-space hanging indents, arguments should have an extra level of indent, use 'sadface' (closing parenthesis and colon on a separate line)
13
+
- Typing: Use PEP484 type annotations in function signatures
14
+
- Docstrings: Google style (do not duplicate type annotations and defaults)
15
+
- Imports: Standard library first, then third-party, then local
16
+
- Function naming: snake_case
17
+
- Class naming: PascalCase
18
+
- Error handling: Use try/except with specific exceptions
19
+
- Conditional expressions: Use parentheses for complex expressions
0 commit comments