diff options
Diffstat (limited to 'pysite/views')
| -rw-r--r-- | pysite/views/__init__.py | 2 | ||||
| -rw-r--r-- | pysite/views/error_handlers/__init__.py | 2 | ||||
| -rw-r--r-- | pysite/views/error_handlers/http_404.py | 2 | ||||
| -rw-r--r-- | pysite/views/healthcheck.py | 3 | ||||
| -rw-r--r-- | pysite/views/index.py | 2 | ||||
| -rw-r--r-- | pysite/views/invite.py | 3 |
6 files changed, 0 insertions, 14 deletions
diff --git a/pysite/views/__init__.py b/pysite/views/__init__.py index ba286add..9bad5790 100644 --- a/pysite/views/__init__.py +++ b/pysite/views/__init__.py @@ -1,3 +1 @@ # coding=utf-8 - -__author__ = "Gareth Coles" diff --git a/pysite/views/error_handlers/__init__.py b/pysite/views/error_handlers/__init__.py index ba286add..9bad5790 100644 --- a/pysite/views/error_handlers/__init__.py +++ b/pysite/views/error_handlers/__init__.py @@ -1,3 +1 @@ # coding=utf-8 - -__author__ = "Gareth Coles" diff --git a/pysite/views/error_handlers/http_404.py b/pysite/views/error_handlers/http_404.py index eea1e630..1d557d9b 100644 --- a/pysite/views/error_handlers/http_404.py +++ b/pysite/views/error_handlers/http_404.py @@ -3,8 +3,6 @@ from werkzeug.exceptions import NotFound from pysite.base_route import ErrorView -__author__ = "Gareth Coles" - class Error404View(ErrorView): name = "error_404" diff --git a/pysite/views/healthcheck.py b/pysite/views/healthcheck.py index 660c8a96..3931100c 100644 --- a/pysite/views/healthcheck.py +++ b/pysite/views/healthcheck.py @@ -4,9 +4,6 @@ from flask import jsonify from pysite.base_route import BaseView -__author__ = "Gareth Coles" - - class IndexView(BaseView): path = "/healthcheck" name = "healthcheck" diff --git a/pysite/views/index.py b/pysite/views/index.py index 2e779003..48a98fac 100644 --- a/pysite/views/index.py +++ b/pysite/views/index.py @@ -1,8 +1,6 @@ # coding=utf-8 from pysite.base_route import BaseView -__author__ = "Gareth Coles" - class IndexView(BaseView): path = "/" diff --git a/pysite/views/invite.py b/pysite/views/invite.py index d035fc99..65cd75a5 100644 --- a/pysite/views/invite.py +++ b/pysite/views/invite.py @@ -4,9 +4,6 @@ from flask import redirect from pysite.base_route import BaseView -__author__ = "Gareth Coles" - - class InviteView(BaseView): path = "/invite" name = "invite" |