Skip to content

Commit e52dc0c

Browse files
committed
we do want to log
1 parent 9c1bef2 commit e52dc0c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

codeflash/verification/pytest_plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,9 +469,9 @@ def _clear_cache_for_object(obj: Any) -> None:
469469
for _, obj in inspect.getmembers(module):
470470
if callable(obj):
471471
_clear_cache_for_object(obj)
472-
except Exception:
472+
except Exception: # noqa: S110
473473
pass
474-
except Exception:
474+
except Exception: # noqa: S110
475475
pass
476476

477477
def _set_nodeid(self, nodeid: str, count: int) -> str:

0 commit comments

Comments
 (0)