Skip to content

Commit

Permalink
style: format code with Autopep8 and isort
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in d45b5d8 according to the output
from Autopep8 and isort.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored Nov 28, 2023
1 parent d45b5d8 commit d5ce8a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion classes/simkl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d5ce8a5

Please sign in to comment.