From 740358ae72498af6a7183d6974e7449ddc292d65 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Mar 2025 14:56:43 +0000 Subject: [PATCH] ci: automatic Python Formatter changes --- senju/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/senju/main.py b/senju/main.py index b35fbee..1bdfd27 100644 --- a/senju/main.py +++ b/senju/main.py @@ -74,7 +74,7 @@ def generate_haiku(): if request.method == 'POST': json_data = request.get_json() prompt = json_data["prompt"] - if len(prompt)>100: + if len(prompt) > 100: return "Content Too Large", 413 haiku = Haiku.request_haiku(prompt) id = store.save_haiku(haiku)