Do you only get UI displayed info from type annota...
# dagster-feedback
g
Do you only get UI displayed info from type annotations for a DataFrame?
s
Hi George - are you able to clarify what code you wrote and what you expect to see in Dagit?
g
Copy code
def function_name(arg) -> list:
Copy code
def function_name(arg: list):
Standard python3 type annotations
s
ah.
[Any]
in Dagit means "list of objects of any type". if you didn't include the
list
type annotation, Dagit wouldn't be showing the square brackets - it would just show
Any
1
❤️ 1
g
Thanks a lot, perfect explanation.