From 88c8aa033be382d6d7349a0c1c9d3b74086232de Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 30 Nov 2020 15:10:56 -0500 Subject: [PATCH] lint.py: fix amount of ..'s for new repo layout --- tools/scripts/lint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/lint.py b/tools/scripts/lint.py index 1bee382..f896ed9 100644 --- a/tools/scripts/lint.py +++ b/tools/scripts/lint.py @@ -54,7 +54,7 @@ def lint_csharp(filename): def main(args): this_dir = os.path.dirname(os.path.realpath(__file__)) - sneak_root = os.path.join(this_dir, '..', '..', '..') + sneak_root = os.path.join(this_dir, '..', '..') os.chdir(sneak_root) csharp_files = sorted(glob.glob('**/*.cs', recursive=True))