Fix review issues from PR #1761

- Remove stray '-' artifact from GameHighScore docstring
- Fix Makefile reformat target scope inconsistency (ruff check --fix)
- Add User.get_profile_audios() shortcut method (parallel to get_profile_photos)
- Test ChatOwnerLeft with new_owner=None (edge case)
- Add VideoQuality type and Video.qualities nesting tests
- Add User.get_profile_audios() test

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
latand 2026-02-09 21:03:23 +02:00
parent 3994fdf5fb
commit 9acc4413f6
5 changed files with 109 additions and 2 deletions

View file

@ -44,7 +44,7 @@ lint:
.PHONY: reformat
reformat:
uv run ruff format $(code_dir)
uv run ruff check --fix $(package_dir)
uv run ruff check --fix $(code_dir)
# =================================================================================================
# Tests