diff options
author | miroslav2 <miroslav2@yandex-team.ru> | 2022-02-10 16:50:53 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:53 +0300 |
commit | 896ea04259c43c3c46da4b065d4cda47938393b9 (patch) | |
tree | 7d002af0b095494c155fc6a0319c619cb80753aa /build/scripts/gen_tasklet_reg.py | |
parent | d6e236f5b91635a49d8cf1211f5d9631f24acd1b (diff) | |
download | ydb-896ea04259c43c3c46da4b065d4cda47938393b9.tar.gz |
Restoring authorship annotation for <miroslav2@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/scripts/gen_tasklet_reg.py')
-rw-r--r-- | build/scripts/gen_tasklet_reg.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/scripts/gen_tasklet_reg.py b/build/scripts/gen_tasklet_reg.py index 5b747c2eca..29c47db356 100644 --- a/build/scripts/gen_tasklet_reg.py +++ b/build/scripts/gen_tasklet_reg.py @@ -16,7 +16,7 @@ WRAPPER = { 'js': 'TJsWrapper("{impl}")', 'go': 'TGoWrapper("{impl}")', 'py': 'TPythonWrapper("{impl}")', - 'java': 'TJavaWrapper("{impl}", "{py_wrapper}")', + 'java': 'TJavaWrapper("{impl}", "{py_wrapper}")', } @@ -26,7 +26,7 @@ def parse_args(): parser.add_argument('output') parser.add_argument('-l', '--lang', choices=WRAPPER, required=True) parser.add_argument('-i', '--impl', required=True) - parser.add_argument('-w', '--wrapper', required=False) + parser.add_argument('-w', '--wrapper', required=False) parser.add_argument('includes', nargs='*') return parser.parse_args() @@ -44,7 +44,7 @@ if __name__ == '__main__': includes=includes, language=args.lang, name=args.name, - wrapper=WRAPPER[args.lang].format(impl=args.impl, py_wrapper=args.wrapper), + wrapper=WRAPPER[args.lang].format(impl=args.impl, py_wrapper=args.wrapper), ) with open(args.output, 'w') as f: |