File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -476,12 +476,14 @@ def filter_functions(
476476 if blocklist_funcs :
477477 functions_tmp = []
478478 for function in _functions :
479- if not (
479+ if (
480480 function .file_path .name in blocklist_funcs
481481 and function .qualified_name in blocklist_funcs [function .file_path .name ]
482482 ):
483+ # This function is in blocklist, we can skip it
483484 blocklist_funcs_removed_count += 1
484485 continue
486+ # This function is NOT in blocklist. we can keep it
485487 functions_tmp .append (function )
486488 _functions = functions_tmp
487489
Original file line number Diff line number Diff line change 11# These version placeholders will be replaced by poetry-dynamic-versioning during `poetry build`.
2- __version__ = "0.13.0 "
3- __version_tuple__ = (0 , 13 , 0 )
2+ __version__ = "0.13.1 "
3+ __version_tuple__ = (0 , 13 , 1 )
You can’t perform that action at this time.
0 commit comments