Skip to content

Commit 795a26c

Browse files
author
Colossal Code
committed
Adds missing reserved words
1 parent 552bdf5 commit 795a26c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/PythonClientCodegen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public PythonClientCodegen() {
111111
"assert", "else", "if", "pass", "yield", "break", "except", "import",
112112
"print", "class", "exec", "in", "raise", "continue", "finally", "is",
113113
"return", "def", "for", "lambda", "try", "self", "nonlocal", "None", "True", "nonlocal",
114-
"float", "int", "str", "date", "datetime"));
114+
"float", "int", "str", "date", "datetime", "False", "await", "async"));
115115

116116
regexModifiers = new HashMap<Character, String>();
117117
regexModifiers.put('i', "IGNORECASE");

0 commit comments

Comments
 (0)