aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-08 15:58:47 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-08 15:58:47 +0000
commit003fba23f9ecce4ad811078331a6c2ca35fefe95 (patch)
tree317b6468e8766ca45ef01baefd7a48f387f25300
parentRevert "Mart's Missing Files 2: Electric Boogaloo" (diff)
Pffft
-rw-r--r--pysite/__init__.py2
-rw-r--r--pysite/base_route.py2
-rw-r--r--pysite/route_manager.py2
-rw-r--r--pysite/views/__init__.py2
-rw-r--r--pysite/views/error_handlers/__init__.py2
-rw-r--r--pysite/views/error_handlers/http_404.py2
-rw-r--r--pysite/views/healthcheck.py3
-rw-r--r--pysite/views/index.py2
-rw-r--r--pysite/views/invite.py3
9 files changed, 0 insertions, 20 deletions
diff --git a/pysite/__init__.py b/pysite/__init__.py
index ba286add..9bad5790 100644
--- a/pysite/__init__.py
+++ b/pysite/__init__.py
@@ -1,3 +1 @@
# coding=utf-8
-
-__author__ = "Gareth Coles"
diff --git a/pysite/base_route.py b/pysite/base_route.py
index 17e9aee3..4fdad857 100644
--- a/pysite/base_route.py
+++ b/pysite/base_route.py
@@ -2,8 +2,6 @@
from flask import Flask
from flask.views import MethodView
-__author__ = "Gareth Coles"
-
class BaseView(MethodView):
path = None #: str
diff --git a/pysite/route_manager.py b/pysite/route_manager.py
index 501076b7..5fe22ba0 100644
--- a/pysite/route_manager.py
+++ b/pysite/route_manager.py
@@ -7,8 +7,6 @@ from flask import Flask
from pysite.base_route import BaseView, ErrorView
-__author__ = "Gareth Coles"
-
class RouteManager:
def __init__(self):
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"