Skip to content

Commit bc2c518

Browse files
committed
Fix types and type linting
1 parent c57d4b9 commit bc2c518

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

twine/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,6 @@ def dispatch(argv: List[str]) -> Any:
118118

119119
configure_output()
120120

121-
main = registered_commands[args.command].load() # type: ignore[no-untyped-call] # python/importlib_metadata#288 # noqa: E501
121+
main = registered_commands[args.command].load()
122122

123123
return main(args.args)

twine/wheel.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import os
1616
import re
1717
import zipfile
18-
from typing import List, Optional
18+
from typing import List, Optional, cast as type_cast
1919

2020
from pkginfo import distribution
2121

@@ -87,5 +87,7 @@ def parse(self, data: bytes) -> None:
8787
super().parse(data)
8888

8989
fp = io.StringIO(data.decode("utf-8", errors="replace"))
90+
# msg is ``email.message.Message`` which is a legacy API documented
91+
# here: https://docs.python.org/3/library/email.compat32-message.html
9092
msg = distribution.parse(fp)
91-
self.description = msg.get_payload()
93+
self.description = type_cast(str, msg.get_payload())

0 commit comments

Comments
 (0)