From 65ff5894c02c302b1dd5939d6bc57f26fb496884 Mon Sep 17 00:00:00 2001 From: alpharush <0xalpharush@protonmail.com> Date: Tue, 18 Oct 2022 15:59:52 -0500 Subject: [PATCH] fix triage prompt not displaying --- slither/detectors/abstract_detector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slither/detectors/abstract_detector.py b/slither/detectors/abstract_detector.py index 528981c92..4ebead96a 100644 --- a/slither/detectors/abstract_detector.py +++ b/slither/detectors/abstract_detector.py @@ -189,7 +189,7 @@ class AbstractDetector(metaclass=abc.ABCMeta): if results and self.slither.triage_mode: while True: indexes = input( - f'Results to hide during next runs: "0,1,...,{len(results)}" or "All" (enter to not hide results): ' + f'Results to hide during next runs: "0,1,...,{len(results)}" or "All" (enter to not hide results):\n' ) if indexes == "All": self.slither.save_results_to_hide(results)