We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d9882 commit 4064c2aCopy full SHA for 4064c2a
src/domain/auth/auth/interfaces/email/client.py
@@ -47,8 +47,8 @@ async def __aenter__(self) -> Self:
47
48
async def __aexit__(
49
self,
50
- exc_type: type[Exception],
51
- exc_val: Exception,
52
- exc_tb: TracebackType,
+ exc_type: type[Exception] | None,
+ exc_val: Exception | None,
+ exc_tb: TracebackType | None,
53
) -> None:
54
pass
0 commit comments