summaryrefslogtreecommitdiff
path: root/fbin/file_storage/base.py
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2021-06-09 19:19:56 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2021-06-09 19:21:34 +0200
commite96bedf7477d392b8821f76ca85038c198c84375 (patch)
treec56deba384f45da8958d848113b4da9fa73fe3f9 /fbin/file_storage/base.py
parent7c13b1038482d68c2ab581dad16fa81c0a09034e (diff)
Fix linting errors
Style, unused imports, unused variables, etc. as reported by flake8. Configuration for flake8 has been added to setup.cfg.
Diffstat (limited to 'fbin/file_storage/base.py')
-rw-r--r--fbin/file_storage/base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fbin/file_storage/base.py b/fbin/file_storage/base.py
index aa2c510..40c1588 100644
--- a/fbin/file_storage/base.py
+++ b/fbin/file_storage/base.py
@@ -1,7 +1,8 @@
import datetime
from ..db import db, File
-from .exceptions import *
+from .exceptions import FileSizeError
+
class BaseStorage:
def __init__(self, app):