From 178dbc1b12dfa7e3f597e8afbac810c04fb499a4 Mon Sep 17 00:00:00 2001 From: Davide Sarra Date: Tue, 24 Nov 2020 21:52:05 +0000 Subject: [PATCH] STY: sort Python imports with isort --- jupyter_spaces/magics.py | 3 +-- requirements/dev_requirements.txt | 2 ++ tests/conftest.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/jupyter_spaces/magics.py b/jupyter_spaces/magics.py index 85e7726..b358e9e 100644 --- a/jupyter_spaces/magics.py +++ b/jupyter_spaces/magics.py @@ -1,8 +1,7 @@ -from IPython.core.magic import cell_magic, line_magic, Magics, magics_class +from IPython.core.magic import Magics, cell_magic, line_magic, magics_class from jupyter_spaces.space import SpaceRegister - space_register = SpaceRegister() diff --git a/requirements/dev_requirements.txt b/requirements/dev_requirements.txt index 7c9d150..33bf49d 100644 --- a/requirements/dev_requirements.txt +++ b/requirements/dev_requirements.txt @@ -1 +1,3 @@ black==19.10b0 +isort==5.6.4 + diff --git a/tests/conftest.py b/tests/conftest.py index 25417fc..f70e766 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ -from IPython.testing.globalipapp import start_ipython import pytest +from IPython.testing.globalipapp import start_ipython @pytest.fixture(scope="session")