twister: fixed pylint issues
Fixed import and unused variable warning. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
9318e6c8f7
commit
5725ed8dd1
2 changed files with 3 additions and 1 deletions
|
@ -125,7 +125,7 @@ def run_sanity_footprint(commit=None, cwd=os.environ.get('ZEPHYR_BASE'),
|
|||
|
||||
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
||||
cwd=cwd, shell=True)
|
||||
output,error=proc.communicate()
|
||||
output,_ = proc.communicate()
|
||||
if proc.wait() == 0:
|
||||
logger.debug(output)
|
||||
return True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue