Skip to content

Commit

Permalink
Update my_gh_sample_transfer_workflow.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sgbaird committed Apr 9, 2024
1 parent 8764130 commit ea998a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/prefect_scripts/my_gh_sample_transfer_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# https://prefecthq.github.io/prefect-slack/
# https://github.com/PrefectHQ/interactive_workflow_examples

from typing import Optional

from prefect import flow, get_run_logger, pause_flow_run, settings
from prefect.blocks.notifications import SlackWebhook
from prefect.context import get_run_context
Expand All @@ -14,7 +16,7 @@

class UserInput(RunInput):
github_username: str
comments: str
comments: Optional[str] = None
flag_for_review: bool


Expand Down

0 comments on commit ea998a9

Please sign in to comment.