From 10b25eb2b9ce167e1939e3f793c4c2ed27bb768e Mon Sep 17 00:00:00 2001 From: shBLOCK <50770712+shBLOCK@users.noreply.github.com> Date: Thu, 4 Apr 2024 19:43:41 +0800 Subject: [PATCH] Fix broken stub generation --- codegen/stub_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/stub_generator.py b/codegen/stub_generator.py index 7043ff5..10abd6b 100644 --- a/codegen/stub_generator.py +++ b/codegen/stub_generator.py @@ -86,7 +86,7 @@ def indent(src: list[str]) -> list[str]: return src stub = [ - "# noinspection SpellCheckingInspection" + "# noinspection SpellCheckingInspection", f"class {self.name}:" ]