mirror of
https://github.com/github/codeql.git
synced 2026-06-17 02:41:08 +02:00
9 lines
131 B
Python
9 lines
131 B
Python
import dataclasses
|
|
import typing
|
|
|
|
import module4
|
|
|
|
@dataclasses.dataclass()
|
|
class Foo:
|
|
bars: typing.List[module4.Bar] # $ Alert
|