@@ -124,7 +124,13 @@ def _set_up_run(self, **envvars):
124124 logger .debug ("_set_up_run#5" )
125125
126126 def run_blocking (self , command , args , wait_for_s = 30.0 , ** envvars ):
127- logger .debug ("run_blocking#0 with command %s, args %s, wait_for %s, envvars %s" , command , args , wait_for_s , envvars )
127+ logger .debug (
128+ "run_blocking#0 with command %s, args %s, wait_for %s, envvars %s" ,
129+ command ,
130+ args ,
131+ wait_for_s ,
132+ envvars ,
133+ )
128134 self ._set_up_run (** envvars )
129135 logger .debug ("run_blocking#1" )
130136 self .process .start (command , args )
@@ -136,16 +142,25 @@ def run_blocking(self, command, args, wait_for_s=30.0, **envvars):
136142 return output
137143
138144 def run (self , command , args , ** envvars ):
139- logger .info ("About to run %s with args %s and envvars %s" , command , args , envvars )
145+ logger .info (
146+ "About to run %s with args %s and envvars %s" ,
147+ command ,
148+ args ,
149+ envvars ,
150+ )
140151 self ._set_up_run (** envvars )
141152 self .process .readyRead .connect (self ._readyRead )
142153 self .process .started .connect (self ._started )
143154 self .process .finished .connect (self ._finished )
144- logger .debug ("About to call QTimer.singleShot with %r" , [self .process .start , command , args ])
155+ logger .debug (
156+ "About to call QTimer.singleShot with %r" ,
157+ [self .process .start , command , args ],
158+ )
145159 partial = functools .partial (self .process .start , command , args )
146160 logger .debug ("partial: %r" , partial )
147161 QTimer .singleShot (
148- 100 , partial ##functools.partial(self.process.start, command, args)
162+ 100 ,
163+ partial ,
149164 )
150165
151166 def wait (self , wait_for_s = 30.0 ):
0 commit comments