Skip to content

Commit

Permalink
Update concat_array.py
Browse files Browse the repository at this point in the history
Remove lines based on review comments
  • Loading branch information
rhoadesScholar authored Feb 7, 2024
1 parent a847735 commit 6b4e17a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions dacapo/experiments/datasplits/datasets/arrays/concat_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ def num_channels(self):
return len(self.channels)

def __getitem__(self, roi: Roi) -> np.ndarray:
logger.info(f"Concat Array: Get Item {self.name} {roi}")
default = (
np.zeros_like(self.source_array[roi])
if self.default_array is None
Expand All @@ -120,5 +119,4 @@ def __getitem__(self, roi: Roi) -> np.ndarray:
)
if concatenated.shape[0] == 1:
logger.info(f"Concatenated array has only one channel: {self.name} {concatenated.shape}")
# raise Exception(f"{concatenated.shape}, shapes")
return concatenated

0 comments on commit 6b4e17a

Please sign in to comment.