From 042cc018cb8226289db4569b4e6d9d67660adc32 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Fri, 2 Feb 2024 18:38:46 +0100 Subject: [PATCH] Fix format --- scanner/scanner/scanner.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scanner/scanner/scanner.py b/scanner/scanner/scanner.py index 95398fcd..863ae58b 100644 --- a/scanner/scanner/scanner.py +++ b/scanner/scanner/scanner.py @@ -89,9 +89,13 @@ class Scanner: del raw["season"] if isinstance(raw.get("season"), List): - raise ProviderError(f"An episode can't have multiple seasons (found {raw.get("season")} for {path})") + raise ProviderError( + f"An episode can't have multiple seasons (found {raw.get("season")} for {path})" + ) if isinstance(raw.get("episode"), List): - raise ProviderError(f"Multi-episodes files are not yet supported (for {path})") + raise ProviderError( + f"Multi-episodes files are not yet supported (for {path})" + ) logging.info("Identied %s: %s", path, raw)