From 4e3ca76e447f4aee5f62744ee8ae95539f5e5e11 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 12 Jun 2015 12:01:16 +0200 Subject: [PATCH] Removed unused forms. --- forms/__init__.py | 0 forms/accounts.py | 9 --------- 2 files changed, 9 deletions(-) delete mode 100644 forms/__init__.py delete mode 100644 forms/accounts.py 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()