```python from flowrep.workflow import workflow def my_function(a, b): return a @workflow def my_workflow(a): a = my_function(a) return a ``` The variable `b` is not and cannot be defined anywhere -> This should throw an error