diff options
author | kakabba <kakabba@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
commit | c8e3995898c443e78266f7420aac5fb3da15d413 (patch) | |
tree | a530e068cc107e227deccc80722204db63a4d75d /build/plugins/_import_wrapper.py | |
parent | 110a978b66fe6c0916572df51cfead2a9b647174 (diff) | |
download | ydb-c8e3995898c443e78266f7420aac5fb3da15d413.tar.gz |
Restoring authorship annotation for <kakabba@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/plugins/_import_wrapper.py')
-rw-r--r-- | build/plugins/_import_wrapper.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build/plugins/_import_wrapper.py b/build/plugins/_import_wrapper.py index 883f662314..f21bb1dc11 100644 --- a/build/plugins/_import_wrapper.py +++ b/build/plugins/_import_wrapper.py @@ -1,9 +1,9 @@ -try: +try: from ymake import CustomCommand as RealCustomCommand - from ymake import addrule - from ymake import addparser + from ymake import addrule + from ymake import addparser from ymake import subst - + class CustomCommand(RealCustomCommand): def __init__(self, *args, **kwargs): RealCustomCommand.__init__(*args, **kwargs) @@ -11,7 +11,7 @@ try: def resolve_path(self, path): return subst(path) -except ImportError: +except ImportError: from _custom_command import CustomCommand # noqa from _custom_command import addrule # noqa from _custom_command import addparser # noqa |