Files
Fulfillment-Backend/test/ockho.py
2024-03-03 07:22:42 +03:00

10 lines
103 B
Python

from typing import Annotated
def get_v():
return 123
ockho: Annotated[int, get_v]
print(ockho)