From 9168fc2d9edb705fa01df2d6e5eabb05f1e9353f Mon Sep 17 00:00:00 2001 From: Naeel Date: Mon, 27 Apr 2026 18:08:00 +0300 Subject: [PATCH] fix: Python template def main() without ctx arg --- console/ui/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/console/ui/index.html b/console/ui/index.html index 22b89b5..edff3f2 100644 --- a/console/ui/index.html +++ b/console/ui/index.html @@ -501,7 +501,7 @@
-
@@ -811,7 +811,7 @@ const LANG_TEMPLATES = { python: { entrypoint: 'main.main', - code: 'def main():\n return "hello from fission"' + code: 'def main():\n return {"ok": True}' }, nodejs: { entrypoint: 'main',