From 00a5c5b48ec9a24da44ca4dae39a5848feb85a26 Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Tue, 28 Jun 2022 16:30:19 +0300 Subject: [PATCH] Increase automated object name int to 999 --- tools/unschema/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/unschema/parser.py b/tools/unschema/parser.py index 7c0624b..d47d658 100644 --- a/tools/unschema/parser.py +++ b/tools/unschema/parser.py @@ -38,7 +38,7 @@ def _generate( The generated TypedDicts, the result values name and the comments. """ if title is None: - title = f"GeneratedObject{randint(100, 200)}" + title = f"GeneratedObject{randint(100, 999)}" # The other TypedDicts result = []