From b3dc9a6ac2dd7511ecb6712ed6aceb4d4ce359ac Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Thu, 14 Sep 2017 15:52:00 +0200 Subject: Code cleanup. --- sqlparse/keywords.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'sqlparse/keywords.py') diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py index c63f1cc..649b5cc 100644 --- a/sqlparse/keywords.py +++ b/sqlparse/keywords.py @@ -804,15 +804,15 @@ KEYWORDS_ORACLE = { # PostgreSQL Syntax KEYWORDS_PLPGSQL = { - 'PARTITION': tokens.Keyword, - 'OVER': tokens.Keyword, - 'PERFORM': tokens.Keyword, - 'NOTICE': tokens.Keyword, - 'PLPGSQL': tokens.Keyword, - 'INHERIT': tokens.Keyword, - 'INDEXES': tokens.Keyword, - - 'FOR': tokens.Keyword, - 'IN': tokens.Keyword, - 'LOOP': tokens.Keyword, + 'PARTITION': tokens.Keyword, + 'OVER': tokens.Keyword, + 'PERFORM': tokens.Keyword, + 'NOTICE': tokens.Keyword, + 'PLPGSQL': tokens.Keyword, + 'INHERIT': tokens.Keyword, + 'INDEXES': tokens.Keyword, + + 'FOR': tokens.Keyword, + 'IN': tokens.Keyword, + 'LOOP': tokens.Keyword, } -- cgit v1.2.1