no more abstract methods

This commit is contained in:
Jakob Ketterl
2020-02-23 19:29:17 +01:00
parent 0a20cb5e41
commit af053b9ac4
2 changed files with 3 additions and 5 deletions

View File

@ -1,8 +1,7 @@
from abc import ABC, abstractmethod
from datetime import datetime
class Controller(ABC):
class Controller(object):
def __init__(self, handler, request, options):
self.handler = handler
self.request = request