Last active
March 4, 2025 20:05
-
-
Save zzstoatzz/772d095672484b76da40a4e6158187f0 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 time import sleep | |
from prefect import flow | |
@flow | |
def sleepy(n: int = 3600): | |
sleep(n) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment