From 504027378d238f22d67503c474fbd95175cfce81 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Sat, 18 May 2024 19:07:33 +0900 Subject: [PATCH] Drop docstring entries for nonexistant kwargs Closes #86 --- src/dendropy/datamodel/treemodel/_tree.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/dendropy/datamodel/treemodel/_tree.py b/src/dendropy/datamodel/treemodel/_tree.py index 986c1a3c..0ed6a362 100644 --- a/src/dendropy/datamodel/treemodel/_tree.py +++ b/src/dendropy/datamodel/treemodel/_tree.py @@ -941,15 +941,6 @@ def extract_tree_with_taxa( suppress_unifurcations : bool If |True|, nodes of outdegree 1 will be deleted. Only will be done if some nodes are excluded from the cloned tree. - is_apply_filter_to_leaf_nodes : bool - If ``True`` then the above filter will be applied to leaf nodes. If - ``False`` then it will not (and all leaf nodes will be - automatically included, unless excluded by an ancestral node being - filtered out). - is_apply_filter_to_internal_nodes : bool - If ``True`` then the above filter will be applied to internal nodes. If - ``False`` then it will not (internal nodes without children will - still be filtered out). Examples -------- @@ -1006,15 +997,6 @@ def extract_tree_with_taxa_labels( suppress_unifurcations : bool If |True|, nodes of outdegree 1 will be deleted. Only will be done if some nodes are excluded from the cloned tree. - is_apply_filter_to_leaf_nodes : bool - If ``True`` then the above filter will be applied to leaf nodes. If - ``False`` then it will not (and all leaf nodes will be - automatically included, unless excluded by an ancestral node being - filtered out). - is_apply_filter_to_internal_nodes : bool - If ``True`` then the above filter will be applied to internal nodes. If - ``False`` then it will not (internal nodes without children will - still be filtered out). Examples --------