From 2e0d716f3332013938f8c4cf3ec16c3664724d51 Mon Sep 17 00:00:00 2001 From: "deepsource-dev-autofix[bot]" <61578317+deepsource-dev-autofix[bot]@users.noreply.github.com> Date: Fri, 4 Jul 2025 12:10:19 +0000 Subject: [PATCH] refactor: remove use of debugger Debuggers should only be used temporarily and locally. It is highly recommended not to leave debug statements in checked-in code. This may cause your application to have unintended side-effects. --- demo_code.py | 1 - hello.py | 1 - 2 files changed, 2 deletions(-) diff --git a/demo_code.py b/demo_code.py index ad68ff119..305e364ab 100644 --- a/demo_code.py +++ b/demo_code.py @@ -43,7 +43,6 @@ def get_number(self, min_max=[1, 10]): def main(options: dict = {}) -> str: - pdb.set_trace() if "run" in options: value = options["run"] else: diff --git a/hello.py b/hello.py index ad68ff119..305e364ab 100644 --- a/hello.py +++ b/hello.py @@ -43,7 +43,6 @@ def get_number(self, min_max=[1, 10]): def main(options: dict = {}) -> str: - pdb.set_trace() if "run" in options: value = options["run"] else: