From d3fd1157437e5ad4d983a49378140220585c622b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 15 Jun 2020 22:05:28 +0300 Subject: [PATCH] Black format --- platformio/commands/test/processor.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platformio/commands/test/processor.py b/platformio/commands/test/processor.py index bb7c4a12..cfc0f3ca 100644 --- a/platformio/commands/test/processor.py +++ b/platformio/commands/test/processor.py @@ -13,7 +13,7 @@ # limitations under the License. import atexit -from os import remove, listdir +from os import listdir, remove from os.path import isdir, isfile, join from string import Template @@ -214,7 +214,8 @@ class TestProcessorBase(object): delete_tmptest_files(test_dir) tmp_file = join( - test_dir, "%s.%s" % (tmp_file_prefix, transport_options.get("language", "c")) + test_dir, + "%s.%s" % (tmp_file_prefix, transport_options.get("language", "c")), ) with open(tmp_file, "w") as fp: fp.write(data)