Skip to content

Fix/pylint cleanup - #8

Merged
Chris-1010 merged 2 commits into
mainfrom
fix/pylint-cleanup
Feb 7, 2026
Merged

Fix/pylint cleanup#8
Chris-1010 merged 2 commits into
mainfrom
fix/pylint-cleanup

Conversation

@Chris-1010

Copy link
Copy Markdown
Collaborator

No description provided.

- Add module, class, and function docstrings (C0114, C0115, C0116)
- Fix import ordering: stdlib before third-party before local (C0411)
- Replace wildcard imports with explicit named imports (W0401)
- Remove trailing whitespace and add missing final newlines (C0303, C0304)
- Replace dict() with dict literals (R1735)
- Remove unused imports and variables (W0611, W0612)
- Narrow broad Exception catches to specific exceptions (W0718)
- Replace f-string logging with lazy % formatting (W1203)
- Fix variable naming: UPPER_CASE for constants, snake_case for locals (C0103)
- Add pylint disable comments for necessary global statements (W0603)
- Fix no-else-return, simplifiable-if-expression, singleton-comparison
- Fix bad indentation in stripe.py (W0311)
- Add encoding="utf-8" to open() calls (W1514)
- Add check=True to subprocess.run() calls (W1510)
- Register Celery task modules via conf.include
@Chris-1010 Chris-1010 self-assigned this Feb 7, 2026
@Chris-1010
Chris-1010 merged commit 2758be8 into main Feb 7, 2026
0 of 3 checks passed
@Chris-1010
Chris-1010 deleted the fix/pylint-cleanup branch February 7, 2026 20:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant