Skip to content

Commit

Permalink
Make the linter happy
Browse files Browse the repository at this point in the history
Signed-off-by: Engin Kayraklioglu <e-kayrakli@users.noreply.github.com>
  • Loading branch information
e-kayrakli committed Mar 9, 2021
1 parent 7fd403f commit bbc6b9f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sphinxcontrib/chapeldomain/chapel.py
Expand Up @@ -76,8 +76,9 @@ class ChapelLexer(RegexLexer):
(r'(iter)((?:\s)+)', bygroups(Keyword, Text), 'procname'),
(r'(proc)((?:\s)+)', bygroups(Keyword, Text), 'procname'),
(r'(operator)((?:\s)+)', bygroups(Keyword, Text), 'procname'),
(r'(class|interface|module|record|union)(\s+)', bygroups(Keyword, Text),
'classname'),
(r'(class|interface|module|record|union)(\s+)',
bygroups(Keyword, Text),
'classname'),

# imaginary integers
(r'\d+i', Number),
Expand Down

0 comments on commit bbc6b9f

Please sign in to comment.