From 8a931e47dac90951890a88c5eb20d090c5236307 Mon Sep 17 00:00:00 2001 From: Kian_Bahasadri <101868619+KianBahasadri@users.noreply.github.com> Date: Sun, 18 Feb 2024 16:39:09 -0500 Subject: [PATCH] fixed bug, not being able to write code on the first line --- pybash/hook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybash/hook.py b/pybash/hook.py index ef54072..dfee57b 100644 --- a/pybash/hook.py +++ b/pybash/hook.py @@ -5,7 +5,7 @@ def source_init(): """Adds subprocess import""" - return "import subprocess" + return "import subprocess\n" def add_hook():