Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
735abadd5bd91db4a9e6f4311969b0afacca0a1a
/
.
/
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
]