summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-03-22 08:46:41 -0400
committerKyle Meyer <kyle@kyleam.com>2021-01-29 23:17:02 -0500
commitb3f75ef49410f0d1920d3c63bfe73504b4260c65 (patch)
tree4fd8640fdad61d657d8fc1a67ef4be1aceb709f7
parent40089c360e8f43916be6b2eed5f2852927710f48 (diff)
downloademacs.d-b3f75ef49410f0d1920d3c63bfe73504b4260c65.tar.gz
snippets: Switch to plain pdb
-rw-r--r--snippets/python-mode/pdb-set-trace2
1 files changed, 1 insertions, 1 deletions
diff --git a/snippets/python-mode/pdb-set-trace b/snippets/python-mode/pdb-set-trace
index 95e2dd7..c4cb5de 100644
--- a/snippets/python-mode/pdb-set-trace
+++ b/snippets/python-mode/pdb-set-trace
@@ -1,4 +1,4 @@
# -*- mode: snippet -*-
# key: pst
# --
-import ipdb as pdb; pdb.set_trace()$0 \ No newline at end of file
+import pdb; pdb.set_trace()$0 \ No newline at end of file