Files
midas/tests/cases/generator/04_frames.py
LordBaryhobal 2b09a29165
All checks were successful
Tests / tests (pull_request) Successful in 6s
tests: add frame constraint generation test
2026-07-09 22:16:28 +02:00

14 lines
215 B
Python

from typing import Any
from midas import T1, T2, Column, Positive, Positives, cast
o: Any = object()
df1 = cast(T1, o)
df2 = cast(T2, o)
df1 + df2
col1: Positives = df2["c"]
col2 = cast(Column[Positive], col1)