re-run through ruff formatter

This commit is contained in:
2025-01-15 12:40:31 +00:00
parent 7b725a51e3
commit da1d5132a8
28 changed files with 608 additions and 609 deletions

View File

@@ -13,12 +13,12 @@ class CAPIError(VMError):
self.fn_name = fn_name
self.code = code
if self.code == -9:
message = " ".join(
message = ' '.join(
(
f"no bind for {self.fn_name}.",
"are you using an old version of the API?",
f'no bind for {self.fn_name}.',
'are you using an old version of the API?',
)
)
else:
message = f"{self.fn_name} returned {self.code}"
message = f'{self.fn_name} returned {self.code}'
super().__init__(message)