10 lines
163 B
Python
10 lines
163 B
Python
# mypy: allow-untyped-defs
|
|
from __future__ import annotations
|
|
|
|
import unittest
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
async def test_foo(self):
|
|
assert False
|