Created
July 31, 2025 17:52
-
-
Save bmr-cymru/9103789a813588632366523b02b548de to your computer and use it in GitHub Desktop.
Missing black change in manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/snapm/manager/_manager.py b/snapm/manager/_manager.py | |
| index 99dec7a..7624830 100644 | |
| --- a/snapm/manager/_manager.py | |
| +++ b/snapm/manager/_manager.py | |
| @@ -386,7 +386,11 @@ class Scheduler: | |
| sched_path = join(_SCHEDULE_D_PATH, sched_file) | |
| try: | |
| schedule = Schedule.from_file(sched_path) | |
| - except (SnapmArgumentError, JSONDecodeError, KeyError) as err: # pragma: no cover | |
| + except ( | |
| + SnapmArgumentError, | |
| + JSONDecodeError, | |
| + KeyError, | |
| + ) as err: # pragma: no cover | |
| _log_warn( | |
| "Failed to load schedule configuration '%s': %s", | |
| sched_file, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment