updated type hints for caplog.at_level to match caplog.set_level
The underlying logging API accepts the log level both as int and as string.
This commit is contained in:
parent
992eabc29e
commit
58036d463d
|
@ -451,7 +451,7 @@ class LogCaptureFixture:
|
|||
|
||||
@contextmanager
|
||||
def at_level(
|
||||
self, level: int, logger: Optional[str] = None
|
||||
self, level: Union[int, str], logger: Optional[str] = None
|
||||
) -> Generator[None, None, None]:
|
||||
"""Context manager that sets the level for capturing of logs. After
|
||||
the end of the 'with' statement the level is restored to its original
|
||||
|
|
Loading…
Reference in New Issue