We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47cfdec commit 762f020Copy full SHA for 762f020
1 file changed
openapi_python_client/utils.py
@@ -48,7 +48,7 @@ def split_words(value: str) -> List[str]:
48
return re.findall(rf"[^{DELIMITERS}]+", value)
49
50
51
-RESERVED_WORDS = (set(dir(builtins)) | {"self", "true", "false", "datetime"}) - {"type", "id"}
+RESERVED_WORDS = (set(dir(builtins)) | {"self", "true", "false", "datetime"}) - {"type", "id", "input", "min", "max"}
52
53
54
def fix_reserved_words(value: str) -> str:
0 commit comments