Skip to content

Commit

Permalink
Remove unused type: ignore comment to appease mypy (whonore#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
whonore authored Sep 16, 2022
1 parent 7401364 commit 1394300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_xmlInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def route_id(self) -> Optional[PyXML]:
@pytest.fixture(scope="module", params=XMLInterfaces)
def xmlInt(request: pytest.FixtureRequest) -> XMLInterfaceBase:
"""Return an XMLInterface for each version."""
min_ver, _max_ver, xi = request.param # type: ignore[attr-defined]
min_ver, _max_ver, xi = request.param
return xi(min_ver, "", Path(), None) # type: ignore


Expand Down

0 comments on commit 1394300

Please sign in to comment.