diff options
Diffstat (limited to 'sqlparse/tokens.py')
-rw-r--r-- | sqlparse/tokens.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/tokens.py b/sqlparse/tokens.py index 41e3742..eefc0b4 100644 --- a/sqlparse/tokens.py +++ b/sqlparse/tokens.py @@ -55,6 +55,7 @@ Assignment = Token.Assignment # Generic types for non-source code Generic = Token.Generic +Command = Generic.Command # String and some others are not direct children of Token. # alias them: @@ -66,4 +67,3 @@ Token.Number = Number DML = Keyword.DML DDL = Keyword.DDL CTE = Keyword.CTE -Command = Keyword.Command |