From 2cc95674c2d65bfdfb50ddc82c854edc755c2bc0 Mon Sep 17 00:00:00 2001 From: gryf Date: Wed, 4 Oct 2023 15:39:47 +0200 Subject: [PATCH] Make python3 default shebang --- snippets/python.snippets | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/snippets/python.snippets b/snippets/python.snippets index fbd72c1..78c5ace 100644 --- a/snippets/python.snippets +++ b/snippets/python.snippets @@ -1,12 +1,10 @@ snippet #! - #!/usr/bin/env python + #!/usr/bin/env python3 snippet #!2 #!/usr/bin/env python2 # coding: utf-8 snippet utf # coding: utf-8 -snippet #!3 - #!/usr/bin/env python3 snippet dbg Python Debugger abbrv __import__('pdb').set_trace() snippet ipdb ipdb abbrv