From d2788b31d2d0b09dbabb6f2c5516de9ad397eb48 Mon Sep 17 00:00:00 2001 From: Ben Donnelly Date: Wed, 1 Nov 2023 17:52:42 +0000 Subject: [PATCH] fix(app frame): fix false positives on app frames --- src/deep/processor/frame_collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deep/processor/frame_collector.py b/src/deep/processor/frame_collector.py index 50e1e47..f486489 100644 --- a/src/deep/processor/frame_collector.py +++ b/src/deep/processor/frame_collector.py @@ -113,7 +113,7 @@ def is_app_frame(self, filename): if filename.starstwith(path): return True - return True + return False def process_frame_variables_breadth_first(self, f_locals): """