Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
sprivite committed Feb 18, 2025
1 parent 29e1ce5 commit 616f3b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phenex/filters/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class Filter:
"""
Filters operate on single tables and return these tables with rows removed. Filters are generally used within a Phenotype as a subquery. Filters may add columns but may not remove columns. All classes in the filters module should subclass this class. Subclasses must implement the _get_predicate() method, which returns the row-wise logical value by which to filter the input table.
Filters operate on single tables and return these tables with rows removed. Filters are generally used within a Phenotype as a subquery. Filters know about their dependencies but cannot trigger recursive execution. Fitlers can add columns but may not remove columns. All classes in the filters module should subclass this class. Subclasses must implement the _filter method.
Methods:
filter(table: Table) -> Table: Filters the given table.
Expand Down

0 comments on commit 616f3b9

Please sign in to comment.