ruff format corrections
Code Quality Pipeline / code-quality (pull_request) Successful in 16s
Test Python Package / test (pull_request) Failing after 9s

This commit is contained in:
Brian Bjarke Jensen
2025-09-14 16:17:04 +02:00
parent 59a943e39a
commit 5d7afe7a6c
4 changed files with 9 additions and 19 deletions
+3 -1
View File
@@ -1,4 +1,6 @@
from .connection_aware_interface import ConnectionAwareInterface as ConnectionAwareInterface
from .connection_aware_interface import (
ConnectionAwareInterface as ConnectionAwareInterface,
)
from .context_aware_interface import ContextAwareInterface as ContextAwareInterface
__all__ = [
@@ -15,10 +15,7 @@ class ContextAwareInterface(ABC):
@abstractmethod
def __exit__(
self,
exc_type: type | None,
exc_val: object | None,
exc_tb: object | None
self, exc_type: type | None, exc_val: object | None, exc_tb: object | None
) -> None:
"""Exit the context."""
raise NotImplementedError()