From 7208b28fe4c36dc1aaa8490eee8446274df3e5b4 Mon Sep 17 00:00:00 2001 From: Jake <j.vondoemming@stud.uni-goettingen.de> Date: Fri, 3 May 2024 18:52:25 +0200 Subject: [PATCH] removed type annotation to fix pipeline --- fgs/datatypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fgs/datatypes.py b/fgs/datatypes.py index 3655ee8..68b9abc 100644 --- a/fgs/datatypes.py +++ b/fgs/datatypes.py @@ -546,7 +546,7 @@ class Link: return self.url urlwithanchor = property(get_urlwithanchor, None, None) - def get_rel(self) -> str|None: + def get_rel(self): """ Get the relation in the context of the rel html attribute for this link or None if no relation is known. -- GitLab