Files
midas/tests/cases/python-parser/03_functions.py
LordBaryhobal 4d343a61ff feat!: remove Python constraint type
this feature was only partially implemented (parsing) and the syntax was not ideal so this commit removes it entirely
2026-07-09 14:15:36 +02:00

15 lines
231 B
Python

# type: ignore
# ruff: disable[F821]
from __future__ import annotations
def func(
col1: Column[float],
col2: Column[float],
) -> Column[float]:
return col1 + col2
def func2(a: int, /, b: float, *, c: str):
pass