lol

nixos/test-driver: name exception according to pep8

see https://docs.astral.sh/ruff/rules/error-suffix-on-exception-name/

+2 -2
+2 -2
nixos/lib/test-driver/test_driver/polling_condition.py
··· 5 5 from .logger import rootlog 6 6 7 7 8 - class PollingConditionFailed(Exception): 8 + class PollingConditionError(Exception): 9 9 pass 10 10 11 11 ··· 60 60 61 61 def maybe_raise(self) -> None: 62 62 if not self.check(): 63 - raise PollingConditionFailed(self.status_message(False)) 63 + raise PollingConditionError(self.status_message(False)) 64 64 65 65 def status_message(self, status: bool) -> str: 66 66 return f"Polling condition {'succeeded' if status else 'failed'}: {self.description}"