lint.py: fix amount of ..'s for new repo layout

This commit is contained in:
Colin McMillen 2020-11-30 15:10:56 -05:00
parent 7faf1ecd97
commit 88c8aa033b

View File

@ -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))