diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-10 01:13:52 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-10 01:13:52 +0300 |
commit | 1f0ba76cc76d92a01b47e922c28c008078844efd (patch) | |
tree | a5d87e333a485bdda66b33e0c7e93b273b525f2a /build/plugins/code_generator.py | |
parent | 369c1c09940bf144ee472ea355968b6caec7435d (diff) | |
download | ydb-1f0ba76cc76d92a01b47e922c28c008078844efd.tar.gz |
intermediate changes
ref:f2c1c3c5ceddb1e8ce4f8edb02e775ebb5ec9cd7
Diffstat (limited to 'build/plugins/code_generator.py')
-rw-r--r-- | build/plugins/code_generator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/plugins/code_generator.py b/build/plugins/code_generator.py index ca8bb18c156..c1dc7922019 100644 --- a/build/plugins/code_generator.py +++ b/build/plugins/code_generator.py @@ -1,7 +1,7 @@ import re import os -import _import_wrapper as iw +import ymake pattern = re.compile(r"#include\s*[<\"](?P<INDUCED>[^>\"]+)[>\"]|(?:@|{@)\s*(?:import|include|from)\s*[\"'](?P<INCLUDE>[^\"']+)[\"']") @@ -41,5 +41,5 @@ class CodeGeneratorTemplateParser(object): def init(): - iw.addparser('markettemplate', CodeGeneratorTemplateParser) - iw.addparser('macro', CodeGeneratorTemplateParser) + ymake.addparser('markettemplate', CodeGeneratorTemplateParser) + ymake.addparser('macro', CodeGeneratorTemplateParser) |