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/fail_module_cmd.py | |
parent | a5acb7aa4ca5a4603215e878eb0cad786793262b (diff) | |
download | ydb-8951ddf780e02616cdb2ec54a02bc354e8507c0f.tar.gz |
`build/scripts` ya style --py
Diffstat (limited to 'build/scripts/fail_module_cmd.py')
-rw-r--r-- | build/scripts/fail_module_cmd.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/scripts/fail_module_cmd.py b/build/scripts/fail_module_cmd.py index fa14c0d851..a7af64da9b 100644 --- a/build/scripts/fail_module_cmd.py +++ b/build/scripts/fail_module_cmd.py @@ -3,5 +3,9 @@ import sys if __name__ == '__main__': assert len(sys.argv) == 2, 'Unexpected number of arguments...' - sys.stderr.write('Error: module command for target [[bad]]{}[[rst]] was not executed due to build graph configuration errors...\n'.format(sys.argv[1])) + sys.stderr.write( + 'Error: module command for target [[bad]]{}[[rst]] was not executed due to build graph configuration errors...\n'.format( + sys.argv[1] + ) + ) sys.exit(1) |