Skip to content

Commit

Permalink
Add missing type annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
pelme committed Jun 23, 2024
1 parent 2b7c954 commit 2db46a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_html2htpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def test_convert_complex_svg() -> None:
assert expected_output == actual_output


def test_reserved_keyword_attributes():
def test_reserved_keyword_attributes() -> None:
actual = html2htpy('<img class="foo" del="x">', shorthand_id_class=False, import_mode="no")
expected = 'img(class_="foo",del_="x")'

Expand Down

0 comments on commit 2db46a0

Please sign in to comment.