From f717fd04684fbb87f298d6b2400b318843004ace Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 9 May 2024 11:50:36 +0100 Subject: [PATCH] Add Python debug snippet --- snippets/python.snippets | 3 +++ 1 file changed, 3 insertions(+) diff --git a/snippets/python.snippets b/snippets/python.snippets index 1717812..ad298e0 100644 --- a/snippets/python.snippets +++ b/snippets/python.snippets @@ -10,3 +10,6 @@ snippet main main() except KeyboardInterrupt: exit(130) + +snippet debug + import ipdb; ipdb.set_trace()