Tools: Rename class PreCommitFlake8 to AP_PreCommit

This commit is contained in:
TunaLobster 2022-09-13 15:08:36 -05:00 committed by Peter Barker
parent 746aebbd0c
commit 4034267cde
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ import sys
import subprocess
class PreCommitFlake8(object):
class AP_PreCommit(object):
def __init__(self):
pass
@ -89,5 +89,5 @@ class PreCommitFlake8(object):
if __name__ == '__main__':
precommit = PreCommitFlake8()
precommit = AP_PreCommit()
sys.exit(precommit.run())