Created
December 8, 2022 16:23
-
-
Save zanieb/9b0a1c79c2769ddd171a8a0369975f78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from prefect import Flow, Task, Parameter | |
| class Foobar(Task): | |
| pass | |
| with Flow("example") as flow: | |
| start_at = Parameter("start_at", default=0) | |
| my_task = Foobar() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment