aboutsummaryrefslogtreecommitdiffstats
path: root/build/scripts/gen_tasklet_reg.py
diff options
context:
space:
mode:
authormiroslav2 <miroslav2@yandex-team.ru>2022-02-10 16:50:54 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:54 +0300
commite13b11cc555cf840f384b0a13c95fda563c7e81b (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /build/scripts/gen_tasklet_reg.py
parent896ea04259c43c3c46da4b065d4cda47938393b9 (diff)
downloadydb-e13b11cc555cf840f384b0a13c95fda563c7e81b.tar.gz
Restoring authorship annotation for <miroslav2@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'build/scripts/gen_tasklet_reg.py')
-rw-r--r--build/scripts/gen_tasklet_reg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/scripts/gen_tasklet_reg.py b/build/scripts/gen_tasklet_reg.py
index 29c47db356..5b747c2eca 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: