Skip to content

Commit be5b8fb

Browse files
committed
Remove unused imports
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 73eae5e commit be5b8fb

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

bpython/curtsiesfrontend/interpreter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import code
2-
import time
32
import traceback
43
import sys
54
from pygments.token import Generic, Token, Keyword, Name, Comment, String

bpython/curtsiesfrontend/parse.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11

22
from bpython.lazyre import LazyReCompile
3-
from bpython.formatter import BPythonFormatter
4-
from bpython._py3compat import PythonLexer
5-
from bpython.config import Struct, loadini, default_config_path
63

74
from curtsies.termformatconstants import FG_COLORS, BG_COLORS, colors
85
from curtsies.formatstring import fmtstr, FmtStr
96

10-
from pygments import format
117
from functools import partial
128

139
import re

bpython/curtsiesfrontend/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import unicodedata
1515

1616
from pygments import format
17-
from bpython._py3compat import PythonLexer, cast_unicode, cast_bytes
17+
from bpython._py3compat import PythonLexer, cast_bytes
1818
from pygments.formatters import TerminalFormatter
1919

2020
import blessings

0 commit comments

Comments
 (0)