From 397b6e23adc167c62353e3aa89a60ef13e96a671 Mon Sep 17 00:00:00 2001 From: peterdlarsen Date: Wed, 30 Apr 2025 12:15:52 -0500 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index abae55b..553fe1e 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ def add(context, event) -> int: @function def get_sources(context, event) -> List[str]: + while True: + print("hello world") return context["sources"].keys() ``` @@ -386,4 +388,4 @@ By default, the logs emitted from within the `compute_modules` library have a le from compute_modules.logging import set_internal_log_level set_internal_log_level(logging.DEBUG) -``` \ No newline at end of file +```