What would be the equivalent of `signals.LOOP` in ...
# ask-community
a
What would be the equivalent of
signals.LOOP
in prefect 2?
1
c
You can just write a
for
loop:
Copy code
import random
from prefect import flow

configs = random (

	@flow
	for config in configs.items():
	def print_message(message):
		print(message)
	
print_message(config["message"])
1