9 lines
159 B
Python
9 lines
159 B
Python
from typing import Callable
|
|
|
|
def fixture(scope: str) -> Callable:
|
|
...
|
|
|
|
class ExceptionInfo:
|
|
...
|
|
|
|
def raises(exception: Exception) -> ExceptionInfo: ... |