diff --git a/src/useq/_plate.py b/src/useq/_plate.py index a4a70a3..aa7a767 100644 --- a/src/useq/_plate.py +++ b/src/useq/_plate.py @@ -273,6 +273,10 @@ def __len__(self) -> int: n_wells = len(self.selected_wells[0]) return n_wells * self.num_points_per_well + def __bool__(self) -> bool: + """bool(WellPlatePlan) == True.""" + return True + @overload def __getitem__(self, index: int) -> Position: ...