is it bad practice to define a parameter in a modu...
# ask-community
h
is it bad practice to define a parameter in a module scope rather than in the flow context?
Copy code
input_a = Parameter('a')

@task 
def abc(b, c):
  return a + b + c

with Flow("abc_flow") as flow:
  # in context
  result = abc()
k
Hi @Henry, this will run during build time as opposed to flow run time so you cant do this
h
ah thanks