diff options
author | iaz1607 <iaz1607@yandex-team.com> | 2023-11-30 12:16:39 +0300 |
---|---|---|
committer | iaz1607 <iaz1607@yandex-team.com> | 2023-11-30 12:56:46 +0300 |
commit | 8951ddf780e02616cdb2ec54a02bc354e8507c0f (patch) | |
tree | 478097488957d3b554e25868c972a959bb40d78e /build/scripts/pack_jcoverage_resources.py | |
parent | a5acb7aa4ca5a4603215e878eb0cad786793262b (diff) | |
download | ydb-8951ddf780e02616cdb2ec54a02bc354e8507c0f.tar.gz |
`build/scripts` ya style --py
Diffstat (limited to 'build/scripts/pack_jcoverage_resources.py')
-rw-r--r-- | build/scripts/pack_jcoverage_resources.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/scripts/pack_jcoverage_resources.py b/build/scripts/pack_jcoverage_resources.py index f6e181067a..5881d90153 100644 --- a/build/scripts/pack_jcoverage_resources.py +++ b/build/scripts/pack_jcoverage_resources.py @@ -8,10 +8,10 @@ def main(args): output_file = args[0] report_file = args[1] - res = subprocess.call(args[args.index('-end') + 1:]) + res = subprocess.call(args[args.index('-end') + 1 :]) if not os.path.exists(report_file): - print>>sys.stderr, 'Can\'t find jacoco exec file' + print >> sys.stderr, 'Can\'t find jacoco exec file' return res with tarfile.open(output_file, 'w') as outf: |