Skip to content

Commit d6f103a

Browse files
committed
bug: fcs_file.channels is List[str], not str
1 parent 623aa63 commit d6f103a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cellengine/resources/fcs_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def annotations(self, val):
7676
self._annotations = val
7777

7878
@property
79-
def channels(self) -> List:
79+
def channels(self) -> List[str]:
8080
"""Return all channels in the file"""
8181
return [f["channel"] for f in self.panel] # type: ignore
8282

0 commit comments

Comments
 (0)