Skip to content

Commit b5a2d7c

Browse files
committed
Clean up imports
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 0badec0 commit b5a2d7c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bpython/autocomplete.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License
22
#
3-
# Copyright (c) 2009-2012 the bpython authors.
3+
# Copyright (c) 2009-2015 the bpython authors.
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal
@@ -21,18 +21,17 @@
2121
# THE SOFTWARE.
2222
#
2323

24-
from __future__ import with_statement
2524
import __builtin__
2625
import __main__
2726
import abc
2827
import rlcompleter
29-
import line as lineparts
3028
import re
3129
import os
3230
from glob import glob
3331
from functools import partial
3432
from bpython import inspection
3533
from bpython import importcompletion
34+
from bpython import line as lineparts
3635
from bpython._py3compat import py3
3736

3837
# Autocomplete modes

0 commit comments

Comments
 (0)