diff --git a/forms/__init__.py b/forms/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/forms/accounts.py b/forms/accounts.py deleted file mode 100644 index 3bb40da..0000000 --- a/forms/accounts.py +++ /dev/null @@ -1,9 +0,0 @@ -from flask_wtf import Form -from wtforms import DecimalField, IntegerField, StringField - -class AccountIdForm(Form): - id = IntegerField() - -class AccountForm(AccountIdForm): - name = StringField() - authorized_overdraft = DecimalField()