Commit Graph

7 Commits

Author SHA1 Message Date
Christopher Ahern
2758be8680 Fix/pylint cleanup (#8)
Some checks are pending
CI / build (3.10) (push) Waiting to run
CI / build (3.8) (push) Waiting to run
CI / build (3.9) (push) Waiting to run
* Fix pylint warnings across all 24 Python files in web_server

- 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

* Update `package-lock.json` add peer dependencies
2026-02-07 20:57:28 +00:00
4141fcd428 UPDATE: VoD Thumbnails now take a screenshot from exactly halfway through the stream, instead of the beginning 2025-03-06 18:26:29 +00:00
cf7e6afe0b UPDATE: Thumbnail generation for VoDs implemented at /vods/<username>/<vod_id>.png 2025-03-05 12:19:24 +00:00
b6b7d5643d PATCH: Fixed VoDs not generating after stream end 2025-03-04 13:56:05 +00:00
43f3b54e22 PATCH: Fixed old .ts files still being present after stream end 2025-03-03 21:41:50 +00:00
a6f89e7e6f UPDATE: Added custom thumbnail functions and checks in stream utils 2025-03-02 16:52:36 +00:00
6f449eea4e REFACTOR: Moved streaming tasks to dedicated folder and updated refs 2025-02-28 19:38:03 +00:00