Skip to content

Commit

Permalink
Replace uses of import *.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anteru committed Aug 15, 2022
1 parent a060b20 commit 58fbb60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pygments/lexers/comal.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
import re

from pygments.lexer import RegexLexer, words
from pygments.token import *
from pygments.token import Comment, Whitespace, Operator, Keyword, String, \
Number, Name, Punctuation

__all__ = ["Comal80Lexer"]

Expand Down
3 changes: 2 additions & 1 deletion pygments/lexers/jmespath.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"""

from pygments.lexer import RegexLexer, bygroups, include
from pygments.token import *
from pygments.token import String, Punctuation, Whitespace, Name, Operator, \
Number, Literal, Keyword

__all__ = ['JMESPathLexer']

Expand Down

0 comments on commit 58fbb60

Please sign in to comment.