Skip to content

Commit

Permalink
Typo fix: say_hello.submit(name="Marvin) (#14880)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen authored Aug 12, 2024
1 parent 1259703 commit ce00c80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/prefect/task_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,11 @@ def log_finished_message(self):
@task
def say_hello(name):
print f"Hello, {name}!"
print(f"Hello, {name}!")
@flow
def example_flow():
future = say_hello.submit(name="Marvin)
future = say_hello.submit(name="Marvin")
future.wait()
example_flow()
Expand Down

0 comments on commit ce00c80

Please sign in to comment.