summaryrefslogtreecommitdiffstats
path: root/reset-django.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-01-19 21:34:09 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2023-01-19 21:34:09 +0000
commit1be3a3892cbaeceeeea3bbcad0d3f323f5a3f630 (patch)
treee98411fd704f234e439f297b12ac4f944d3d24ac /reset-django.py
parent89b0c0862e588990e62fb79d43e9935efa753d8a (diff)
downloadtroggle-1be3a3892cbaeceeeea3bbcad0d3f323f5a3f630.tar.gz
troggle-1be3a3892cbaeceeeea3bbcad0d3f323f5a3f630.tar.bz2
troggle-1be3a3892cbaeceeeea3bbcad0d3f323f5a3f630.zip
ruff removed unused imports
Diffstat (limited to 'reset-django.py')
-rw-r--r--reset-django.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/reset-django.py b/reset-django.py
index c847fa4..d822d07 100644
--- a/reset-django.py
+++ b/reset-django.py
@@ -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