File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ def main() -> None:
44
44
# We’d like to add “--” after the options, but that’s not possible
45
45
# due to https://github.com/PyCQA/pylint/issues/7003.
46
46
'--persistent=no' , '--rcfile=' + str (args .pylintrc .resolve ()),
47
- f'--init-hook=import sys; sys.path.extend({ repository_path !r} )' ]
47
+ f'--init-hook=import sys; sys.path.extend({ repository_path !r} )' ,
48
+ f'--output-format=text,text:{ args .out } ' ]
48
49
+ [str (file ) for file in sorted (srcset )],
49
50
check = False ,
50
51
stdout = subprocess .PIPE , stderr = subprocess .STDOUT ,
@@ -53,7 +54,6 @@ def main() -> None:
53
54
print ('$' , shlex .join (result .args ))
54
55
print (result .stdout )
55
56
sys .exit (result .returncode )
56
- args .out .touch ()
57
57
58
58
59
59
if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments