From ba73f5bbe2871f1f26e741fd18f10df1a5413aa8 Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Wed, 27 Oct 2021 20:36:17 -0400 Subject: [PATCH] use relative inheritence --- pygeoapi/provider/tinydb_.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygeoapi/provider/tinydb_.py b/pygeoapi/provider/tinydb_.py index 1ca6026..44b9fbe 100644 --- a/pygeoapi/provider/tinydb_.py +++ b/pygeoapi/provider/tinydb_.py @@ -56,7 +56,7 @@ class TinyDBCatalogueProvider(BaseProvider): '_metadata-anytext', ] - BaseProvider.__init__(self, provider_def) + super().__init__(provider_def) LOGGER.debug('Connecting to TinyDB db at {}'.format(self.data))