In the github repo for 101, some examples use `@fl...
# pacc-dec-17-18-2024
m
In the github repo for 101, some examples use
@flow
as the decorator and others as `@flow()`; I'm not experienced with decorators so possibly it's that, but I wasn't sure what the difference was or if it matters
1
j
They are the same.
The parentheses are required if you want to pass arguments to the decorator. We’ll see examples of that soon.
👍 1