From 998d3b4109c480d4e39d20186e1c475913f3cb11 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Mon, 30 Dec 2019 18:08:03 +0000 Subject: [PATCH] Added empty class endpoint --- openflexure_microscope/common/flask_labthings/resource.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openflexure_microscope/common/flask_labthings/resource.py b/openflexure_microscope/common/flask_labthings/resource.py index fc902d3e..cb18092f 100644 --- a/openflexure_microscope/common/flask_labthings/resource.py +++ b/openflexure_microscope/common/flask_labthings/resource.py @@ -4,6 +4,7 @@ from flask.views import MethodView class Resource(MethodView): """Currently identical to MethodView """ + endpoint = None def __init__(self, *args, **kwargs): MethodView.__init__(self, *args, **kwargs)