run black

This commit is contained in:
Jakob Ketterl
2019-11-23 01:12:21 +01:00
parent 91669a7fda
commit 9246500c95
7 changed files with 72 additions and 34 deletions

View File

@ -87,7 +87,7 @@ class FeatureDetector(object):
return inspect.getdoc(self._get_requirement_method(requirement))
def command_is_runnable(self, command):
tmp_dir = PropertyManager.getSharedInstance()['temporary_directory']
tmp_dir = PropertyManager.getSharedInstance()["temporary_directory"]
cmd = shlex.split(command)
try:
process = subprocess.Popen(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, cwd=tmp_dir)