diff options
| author | heretic <[email protected]> | 2022-02-10 16:45:43 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:45:43 +0300 | 
| commit | 397cbe258b9e064f49c4ca575279f02f39fef76e (patch) | |
| tree | a0b0eb3cca6a14e4e8ea715393637672fa651284 /library/python | |
| parent | 43f5a35593ebc9f6bcea619bb170394ea7ae468e (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/python')
| -rw-r--r-- | library/python/testing/yatest_common/yatest/common/runtime.py | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/runtime.py b/library/python/testing/yatest_common/yatest/common/runtime.py index e55e1934463..a0d4eda0ceb 100644 --- a/library/python/testing/yatest_common/yatest/common/runtime.py +++ b/library/python/testing/yatest_common/yatest/common/runtime.py @@ -1,6 +1,6 @@  import errno  import functools -import json +import json   import os  import threading @@ -254,13 +254,13 @@ def cxx_compiler_path():      return os.environ.get("YA_CXX") -def global_resources(): -    try: -        return json.loads(os.environ.get("YA_GLOBAL_RESOURCES")) -    except (TypeError, ValueError): -        return {} - - +def global_resources():  +    try:  +        return json.loads(os.environ.get("YA_GLOBAL_RESOURCES"))  +    except (TypeError, ValueError):  +        return {}  +  +   def _register_core(name, binary_path, core_path, bt_path, pbt_path):      config = _get_ya_config()  | 
