Hello everyone, hope you are doing well. I have b...
# ask-community
v
Hello everyone, hope you are doing well. I have been working with prefect 1.4.0, I am a beginner. I have a flow as below
Copy code
with Flow("TEST_FLOW",storage=Module(__name__)) as flow:
       file_path = Parameter("file")
       trace_context = Parameter("trace_context", default=None)

       translations = translate_task(file_path=file_path, context=trace_context)
I would like to view what translations hold. Could some one help me here?
b
Hi Vysali, thanks for your message! Would you mind sharing what the
translate_task
is doing? Does it return a value? As a side note, if you're just getting started, I highly encourage you to start with Prefect 3.0. Here's the documentation to help you out!
Prefect 1.0 is deprecated and has a few syntax quirks that aren't present in 3.0.