Skip to content

Commit

Permalink
move import
Browse files Browse the repository at this point in the history
  • Loading branch information
impact27 committed Jul 24, 2020
1 parent 3f45d1c commit 2dbfde7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spyder/app/tests/test_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3404,7 +3404,7 @@ def hello():
with qtbot.waitSignal(shell.executed):
qtbot.mouseClick(debug_button, Qt.LeftButton)

# Check `test` has a value of
# Check `test` has a value of
# Here we use "waitUntil" because `shell.executed` is emitted twice
# One at the beginning of the file, and once at the breakpoint
qtbot.waitUntil(lambda: 'test' in nsb.editor.source_model._data and
Expand Down
2 changes: 1 addition & 1 deletion spyder/plugins/ipythonconsole/widgets/debugging.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import re
import pdb

from spyder.py3compat import PY2
if not PY2:
from IPython.core.inputtransformer2 import TransformerManager
else:
Expand All @@ -20,7 +21,6 @@
from IPython.core.history import HistoryManager

from spyder.config.manager import CONF
from spyder.py3compat import PY2
from spyder.config.base import get_conf_path


Expand Down

0 comments on commit 2dbfde7

Please sign in to comment.