Skip to content

Commit 3952776

Browse files
authored
Merge branch 'main' into chore/handle-json-and-string-errors-from-cfapi
2 parents 57d700b + 19dcbfb commit 3952776

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

codeflash/discovery/functions_to_optimize.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

codeflash/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
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)

0 commit comments

Comments
 (0)