14 lines
142 B
Python
14 lines
142 B
Python
# mypy: allow-untyped-defs
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def request():
|
|
pass
|
|
|
|
|
|
def test():
|
|
pass
|