rename to avoid bad identifiers

This commit is contained in:
2019-11-19 04:41:38 -08:00
parent 8232776e41
commit 66951ce1ae
2 changed files with 14 additions and 10 deletions

14
main.py Normal file
View File

@ -0,0 +1,14 @@
from BackupRotator import BackupRotator
#
def main():
rotator = BackupRotator()
rotator.run()
if __name__ == "__main__":
main()