Move .clang-format up

This commit is contained in:
Matt Borgerson 2022-07-31 00:03:34 -07:00
parent 454e4e4684
commit b3b96213a3
2 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ class SourceManager:
@staticmethod
def reformat_file(path: str):
call_args = ['clang-format', '-style=file:src/.clang-format', '-i', path]
call_args = ['clang-format', '-style=file:.clang-format', '-i', path]
log.debug('Calling: %s', ' '.join(call_args))
subprocess.check_call(call_args)