From d5ce8a52667aa322306c37ff4c9be89efd274145 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 03:00:41 +0000 Subject: [PATCH] style: format code with Autopep8 and isort This commit fixes the style issues introduced in d45b5d8 according to the output from Autopep8 and isort. Details: None --- classes/simkl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/classes/simkl.py b/classes/simkl.py index b77dcb5c..cd689283 100644 --- a/classes/simkl.py +++ b/classes/simkl.py @@ -377,7 +377,8 @@ async def get_show(self, media_id: int | str) -> dict[str, Any]: Returns: dict: Response from Simkl API """ - cache_file_path = Cache.get_cache_file_path(f"show/{media_id}/data.json") + cache_file_path = Cache.get_cache_file_path( + f"show/{media_id}/data.json") cached_data = Cache.read_cached_data(cache_file_path) if cached_data is not None: return cached_data