diff --git a/Makefile b/Makefile index 2a715486..c41fb986 100644 --- a/Makefile +++ b/Makefile @@ -37,14 +37,14 @@ install: clean .PHONY: lint lint: - uv run ruff format --check --diff $(code_dir) + uv run ruff format --check --diff $(package_dir) uv run ruff check --show-fixes --preview $(package_dir) $(examples_dir) uv run mypy $(package_dir) .PHONY: reformat reformat: uv run ruff format $(code_dir) - uv run ruff check --fix $(code_dir) + uv run ruff check --fix $(package_dir) # ================================================================================================= # Tests diff --git a/tests/test_api/test_methods/test_get_user_profile_audios.py b/tests/test_api/test_methods/test_get_user_profile_audios.py index 924af1bd..b4f08905 100644 --- a/tests/test_api/test_methods/test_get_user_profile_audios.py +++ b/tests/test_api/test_methods/test_get_user_profile_audios.py @@ -10,9 +10,7 @@ class TestGetUserProfileAudios: ok=True, result=UserProfileAudios( total_count=1, - audios=[ - Audio(file_id="file_id", file_unique_id="file_unique_id", duration=120) - ], + audios=[Audio(file_id="file_id", file_unique_id="file_unique_id", duration=120)], ), )