From b6d4cb509a29c1f7fdd0c42e9b41fe90523539f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <amuoz@ed.ac.uk>
Date: Thu, 23 Jun 2022 14:00:32 +0100
Subject: [PATCH] isort cells.py

---
 io/cells.py | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/io/cells.py b/io/cells.py
index 562577a8..e0dee6e0 100644
--- a/io/cells.py
+++ b/io/cells.py
@@ -1,18 +1,15 @@
 import logging
+from collections.abc import Iterable
+from itertools import groupby
 from pathlib import Path, PosixPath
-from time import perf_counter
 from typing import Union
-from itertools import groupby
-from collections.abc import Iterable
 
-from utils_find_1st import find_1st, cmp_equal
 import h5py
 import numpy as np
+from agora.io.writer import load_complex
 from scipy import ndimage
 from scipy.sparse.base import isdense
-
-from agora.io.writer import load_complex
-
+from utils_find_1st import cmp_equal, find_1st
 
 # def cell_factory(store, type="hdf5"):
 #     if type == "hdf5":
-- 
GitLab