Skip to content

Commit 5d2685a

Browse files
committed
docs: clarify get_events; format
1 parent c827af8 commit 5d2685a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

cellengine/resources/fcs_file.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,8 @@ def get_events(
590590
use [`fcs_file.channel_for_reagent(reagent)`][cellengine.resources.fcs_file.FcsFile.channel_for_reagent].
591591
592592
Args:
593-
inplace: bool
593+
inplace: If `True`, updates the `events` property of this `FcsFile`.
594+
destination: If provided, the file will be saved to the given path.
594595
**kwargs:
595596
- compensatedQ (bool): If `True`, applies the compensation
596597
specified in compensationId to the exported events.

cellengine/resources/folder.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ def created(self) -> datetime:
3838

3939
@property
4040
def deleted(self) -> Union[datetime, None]:
41-
"""If the folder is soft-deleted, the date on which it was soft-deleted.
42-
"""
41+
"""If the folder is soft-deleted, the date on which it was soft-deleted."""
4342
deleted = self._properties["deleted"]
4443
return timestamp_to_datetime(deleted) if deleted else None
4544

0 commit comments

Comments
 (0)