diff --git a/src/replit/maqpy/html.py b/src/replit/maqpy/html.py index b32fed3..8796e83 100644 --- a/src/replit/maqpy/html.py +++ b/src/replit/maqpy/html.py @@ -54,7 +54,7 @@ class Link(HTMLElement): href (str): The href attribute, where the link points to. attrs (str): Any additional attributes of the tag. """ - super().__init__(self, content, {"href": href, **attrs}) + super().__init__(content, **{"href": href, **attrs}) class Page(flask.Response):