Fix paths in the auto-formatting tools

Those got missed in the submodule change commit.

Pull Request #105178
This commit is contained in:
Sergey Sharybin 2023-02-24 15:52:34 +01:00 committed by Sergey Sharybin
parent b8359ede7d
commit 9b70039014
2 changed files with 2 additions and 2 deletions

@ -28,7 +28,7 @@ VERSION_MIN = (1, 6, 0)
VERSION_MAX_RECOMMENDED = (1, 6, 0)
AUTOPEP8_FORMAT_CMD = "autopep8"
BASE_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..", ".."))
BASE_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))
os.chdir(BASE_DIR)

@ -26,7 +26,7 @@ VERSION_MIN = (8, 0, 0)
VERSION_MAX_RECOMMENDED = (12, 0, 0)
CLANG_FORMAT_CMD = "clang-format"
BASE_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..", ".."))
BASE_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))
os.chdir(BASE_DIR)