Skip to content

Commit 2962b81

Browse files
authored
Update plugin.py
1 parent 54d9d63 commit 2962b81

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/plugin.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Maintainer: klebster2 <https://github.com/klebster2>
55
import subprocess
66
import sys
7-
7+
import os
88

99
def install(package: str):
1010
subprocess.check_call([sys.executable, "-m", "pip", "install", package])
@@ -14,7 +14,6 @@ def install(package: str):
1414
# This is the quick and dirty way to get packages installed if they are not already installed
1515
try:
1616
import vim # pylint: disable=import-error
17-
1817
except Exception as e:
1918
print("No vim module available outside vim")
2019
raise e

0 commit comments

Comments
 (0)