ruff removed unused imports

This commit is contained in:
2023-01-19 21:34:09 +00:00
parent 89b0c0862e
commit 1be3a3892c
12 changed files with 64 additions and 117 deletions

View File

@@ -1,6 +1,5 @@
import os
import shutil
from pprint import pprint
"""Cleans all django-created files and compiled python. Used by the
pre-run.sh script which cleans and initialises everything before
@@ -79,7 +78,7 @@ def main():
delete_sqlite3()
print("All cleanup operations performed successfully.")
except Exception as e:
except Exception:
print("There was some error! Aaargh. \n")
raise