Skip to content

Commit 49818b9

Browse files
committed
Sort imports
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent c08f412 commit 49818b9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bpython/curtsies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from __future__ import absolute_import
22

33
import code
4+
import io
45
import logging
56
import sys
6-
import io
77
from optparse import Option
88

99
import curtsies

bpython/repl.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@
4747

4848
from pygments.token import Token
4949

50+
from bpython import autocomplete
5051
from bpython import inspection
5152
from bpython._py3compat import PythonLexer, py3, prepare_for_exec
52-
from bpython.formatter import Parenthesis
53-
from bpython.translations import _, ngettext
5453
from bpython.clipboard import get_clipboard, CopyFailed
54+
from bpython.formatter import Parenthesis
5555
from bpython.history import History
56-
import bpython.autocomplete as autocomplete
56+
from bpython.translations import _, ngettext
5757

5858

5959
class RuntimeTimer(object):

0 commit comments

Comments
 (0)