ruff format corrections
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user