Skip to content
Snippets Groups Projects
Commit df95da90 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

refactor(cells): Rename CellsLinear -> Cells

parent 96c53f04
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ from scipy.sparse.base import isdense ...@@ -12,7 +12,7 @@ from scipy.sparse.base import isdense
from utils_find_1st import cmp_equal, find_1st from utils_find_1st import cmp_equal, find_1st
class CellsLinear: class Cells:
""" """
Extracts information from an h5 file. This class accesses: Extracts information from an h5 file. This class accesses:
...@@ -143,7 +143,7 @@ class CellsLinear: ...@@ -143,7 +143,7 @@ class CellsLinear:
def group_by_traps( def group_by_traps(
self, traps: t.Collection, cell_labels: t.Collection self, traps: t.Collection, cell_labels: t.Collection
) -> t.Dict[int, t.List[t.int]]: ) -> t.Dict[int, t.List[int]]:
# returns a dict with traps as keys and list of labels as value # returns a dict with traps as keys and list of labels as value
# Data is a # Data is a
iterator = groupby(zip(traps, cell_labels), lambda x: x[0]) iterator = groupby(zip(traps, cell_labels), lambda x: x[0])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment