Skip to content

Commit d927418

Browse files
committed
Fix a pyflakes warning
1 parent 9c43cdd commit d927418

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bpython/curtsiesfrontend/interpreter.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import code
22
import traceback
33
import sys
4-
from pygments.token import *
4+
from pygments.token import Generic, Token, Keyword, Name, Comment, String
5+
from pygments.token import Error, Literal, Number, Operator, Punctuation
6+
from pygments.token import Whitespace
57
from pygments.formatter import Formatter
68
from bpython.curtsiesfrontend.parse import parse
79
from codeop import CommandCompiler

0 commit comments

Comments
 (0)