File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- if ! has (" python3" )
2
- echo " vim has to be compiled with +python3 to run this"
1
+ if ! has (' python3' )
2
+ echo ' vim has to be compiled with +python3 to run this'
3
3
finish
4
4
endif
5
5
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ def install(package: str):
12
12
13
13
# This is the quick and dirty way to get packages installed if they are not already installed
14
14
try :
15
- import vim
15
+ import vim # pylint: disable=import-error
16
16
except Exception as e :
17
17
print ("No vim module available outside vim" )
18
18
raise e
@@ -51,5 +51,5 @@ def query():
51
51
# Strip and clean the word
52
52
cword = cword .strip ()
53
53
assert isinstance (cword , str )
54
- # TODO: add cleaning logic here
54
+ # TODO: add cleaning logic here # pylint: disable
55
55
return cword
You can’t perform that action at this time.
0 commit comments