From 158215b1f8450858dd0ab50e3d958918b6d8ec5b Mon Sep 17 00:00:00 2001 From: Ole-Jakob Olsen Date: Tue, 11 Jun 2024 22:20:49 +0200 Subject: [PATCH] Remove the import of html2htpy in init file --- htpy/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/htpy/__init__.py b/htpy/__init__.py index 810e5d6..5dc4d48 100644 --- a/htpy/__init__.py +++ b/htpy/__init__.py @@ -10,8 +10,6 @@ from markupsafe import Markup as _Markup from markupsafe import escape as _escape -from .html2htpy import * - BaseElementSelf = TypeVar("BaseElementSelf", bound="BaseElement") ElementSelf = TypeVar("ElementSelf", bound="Element")