Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
b7b493e2fb00414e4766e1455cfd26ef15c4e5b8
/
.
/
f.py
blob: 02a3668c10cac01787fad5fe79377ab6e43f4c5f [
file
] [
log
] [
blame
]
from
__future__
import
annotations
from
dataclasses
import
dataclass
from
typing
import
List
from
typing
import
ClassVar
as
CV
@dataclass
class
A
:
a
:
List
[
str
]
@dataclass
class
B
(
A
):
b
:
CV
[
int
]