Skip to content

Commit

Permalink
Fix py38 build
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenLooman committed Mar 25, 2024
1 parent f6273bf commit e0e96b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion async_upnp_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from typing import (
Any,
Callable,
Dict,
Generic,
List,
Mapping,
Expand Down Expand Up @@ -65,7 +66,7 @@ def __enter__(self) -> None:
def expat_parser_create(
encoding: Optional[str] = None,
namespace_separator: Optional[str] = None,
intern: Optional[dict[str, Any]] = None,
intern: Optional[Dict[str, Any]] = None,
) -> expat.XMLParserType:
# pylint: disable=unused-argument
return self._old_parser_create(encoding, None, intern)
Expand Down

0 comments on commit e0e96b7

Please sign in to comment.