fork of hey-api/openapi-ts because I need some additional things
1export enum PyNodeKind {
2 Assignment = 'Assignment',
3 AsyncExpression = 'AsyncExpression',
4 AugmentedAssignment = 'AugmentedAssignment',
5 AwaitExpression = 'AwaitExpression',
6 BinaryExpression = 'BinaryExpression',
7 Block = 'Block',
8 BreakStatement = 'BreakStatement',
9 CallExpression = 'CallExpression',
10 ClassDeclaration = 'ClassDeclaration',
11 Comment = 'Comment',
12 ContinueStatement = 'ContinueStatement',
13 DictComprehension = 'DictComprehension',
14 DictExpression = 'DictExpression',
15 EmptyStatement = 'EmptyStatement',
16 ExceptClause = 'ExceptClause',
17 ExpressionStatement = 'ExpressionStatement',
18 FStringExpression = 'FStringExpression',
19 ForStatement = 'ForStatement',
20 FunctionDeclaration = 'FunctionDeclaration',
21 FunctionParameter = 'FunctionParameter',
22 GeneratorExpression = 'GeneratorExpression',
23 Identifier = 'Identifier',
24 IfStatement = 'IfStatement',
25 ImportStatement = 'ImportStatement',
26 KeywordArgument = 'KeywordArgument',
27 LambdaExpression = 'LambdaExpression',
28 ListComprehension = 'ListComprehension',
29 ListExpression = 'ListExpression',
30 Literal = 'Literal',
31 MemberExpression = 'MemberExpression',
32 RaiseStatement = 'RaiseStatement',
33 ReturnStatement = 'ReturnStatement',
34 SetComprehension = 'SetComprehension',
35 SetExpression = 'SetExpression',
36 SourceFile = 'SourceFile',
37 SubscriptExpression = 'SubscriptExpression',
38 SubscriptSlice = 'SubscriptSlice',
39 TryStatement = 'TryStatement',
40 TupleExpression = 'TupleExpression',
41 WhileStatement = 'WhileStatement',
42 WithItem = 'WithItem',
43 WithStatement = 'WithStatement',
44 YieldExpression = 'YieldExpression',
45 YieldFromExpression = 'YieldFromExpression',
46}