From 0ee4b0493d27b76d97d9b42343c7be6c3868b784 Mon Sep 17 00:00:00 2001 From: Michael Deistler Date: Fri, 8 Dec 2023 22:49:53 +0100 Subject: [PATCH] black and isort --- jaxley/modules/base.py | 2 +- tests/test_plotting_api.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/jaxley/modules/base.py b/jaxley/modules/base.py index 97285f70..ea8328f2 100644 --- a/jaxley/modules/base.py +++ b/jaxley/modules/base.py @@ -13,12 +13,12 @@ from jaxley.channels import Channel from jaxley.solver_voltage import step_voltage_explicit, step_voltage_implicit from jaxley.synapses import Synapse -from jaxley.utils.plot_utils import plot_morph from jaxley.utils.cell_utils import ( _compute_index_of_child, _compute_num_children, compute_levels, ) +from jaxley.utils.plot_utils import plot_morph class Module(ABC): diff --git a/tests/test_plotting_api.py b/tests/test_plotting_api.py index d0dbe0c0..844f5960 100644 --- a/tests/test_plotting_api.py +++ b/tests/test_plotting_api.py @@ -86,4 +86,3 @@ def test_vis_networks_built_from_scartch(): _, ax = plt.subplots(1, 1, figsize=(3, 3)) net.cell(0).move(0, 100) ax = net.vis(detail="full", ax=ax) -