diff --git a/examples/data_types_and_io/data_types_and_io/attribute_access.py b/examples/data_types_and_io/data_types_and_io/attribute_access.py index b72622abe..4a2621c86 100644 --- a/examples/data_types_and_io/data_types_and_io/attribute_access.py +++ b/examples/data_types_and_io/data_types_and_io/attribute_access.py @@ -151,7 +151,8 @@ def failed_workflow(): l, d, f = failed_task() print_str(a=l[100]) print_str(a=d["b"]) - print_str(a=f.b) + # This task will fail at compile time + # print_str(a=f.b) # %% [markdown]