From b7008dfdaa5982343bd20e5d0e10e583db05e46b Mon Sep 17 00:00:00 2001 From: Wolfgang Fahl Date: Sun, 17 Mar 2024 16:19:51 +0100 Subject: [PATCH] tries fixing --- ceurws/dblp.py | 2 +- ceurws/webserver.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ceurws/dblp.py b/ceurws/dblp.py index 8277c31..8baa54a 100644 --- a/ceurws/dblp.py +++ b/ceurws/dblp.py @@ -376,7 +376,7 @@ def toDblpUrl(self, entityId: str, withPostfix: bool = False) -> Union[str, None withPostfix: If True add the postfix ".html" Returns: - ddblp url of None if the url can not be generated for the given input + dblp url of None if the url can not be generated for the given input """ urlId = self.convertEntityIdToUrlId(entityId) if urlId is None: diff --git a/ceurws/webserver.py b/ceurws/webserver.py index 348054c..7817ca3 100644 --- a/ceurws/webserver.py +++ b/ceurws/webserver.py @@ -19,7 +19,6 @@ from ceurws.volume_view import VolumeView, VolumeListView from ceurws.wikidatasync import WikidataSync from ceurws.wikidata_view import WikidataView -from lodstorage.query import EndpointManager class CeurWsWebServer(InputWebserver): """ @@ -228,7 +227,7 @@ def configure_run(self): """ InputWebserver.configure_run(self) self.wdSync = WikidataSync.from_args(self.args) - self.wdSync.dblpEndpoint.load_all() + #self.wdSync.dblpEndpoint.load_all() class CeurWsSolution(InputWebSolution):