Skip to content

Commit f524829

Browse files
Fix linting
1 parent 0356fb3 commit f524829

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

meta/templates/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
https://creativecommons.org/licenses/by-sa/2.5/
99
"""
1010
from typing import Any, Optional, Union, Literal
11+
12+
from ..__render_options import Options
1113
from ..__tag_base import Tag, SelfClosingTag, WhitespaceSensitiveTag
1214
from ..__types import AttributeType, ChildrenType
13-
from ..__render_options import Options

pyhtml/__tags/generated.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
88
https://creativecommons.org/licenses/by-sa/2.5/
99
"""
10-
from typing import Any, Optional, Union, Literal
11-
from ..__tag_base import Tag, SelfClosingTag, WhitespaceSensitiveTag
12-
from ..__types import AttributeType, ChildrenType
10+
from typing import Any, Literal, Optional, Union
11+
1312
from ..__render_options import Options
13+
from ..__tag_base import SelfClosingTag, Tag, WhitespaceSensitiveTag
14+
from ..__types import AttributeType, ChildrenType
15+
1416

1517
class html(Tag):
1618
"""

0 commit comments

Comments
 (0)