diff --git a/wwwroot/hermes_services/list/index.dspy b/wwwroot/hermes_services/list/index.dspy index 4f00989..20b40a9 100644 --- a/wwwroot/hermes_services/list/index.dspy +++ b/wwwroot/hermes_services/list/index.dspy @@ -14,7 +14,7 @@ try: }) # Return array directly for code component - print(json.dumps(result, ensure_ascii=False)) + return result except Exception as e: # On error or no data, return empty array - print(json.dumps([], ensure_ascii=False)) \ No newline at end of file + return [] \ No newline at end of file