Skip to content

Commit bc14b9b

Browse files
Add missing python reserved name (#68)
1 parent 1750c2c commit bc14b9b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

QuantConnectStubsGenerator/Utility/StringExtensions.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ public static class StringExtensions
2424
{
2525
"and", "as", "assert", "break", "class", "continue", "def", "del", "elif", "else", "except",
2626
"False", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", "None",
27-
"nonlocal", "not", "or", "pass", "raise", "return", "True", "try", "while", "with", "yield"
27+
"nonlocal", "not", "or", "pass", "raise", "return", "True", "try", "while", "with", "yield",
28+
"await"
2829
};
2930

3031
public static string Indent(this string str, int level = 1)

0 commit comments

Comments
 (0)