Skip to content

Commit

Permalink
πŸ§Žβ€β™€οΈ Genuflect to the types.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Aug 19, 2024
1 parent cbdc0f0 commit 405317a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jaraco/develop/print-meta.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from typing import cast, Any

from build.util import project_wheel_metadata
from jaraco.ui.main import main


@main
def run(path: str = '.', field: str = 'Requires-Dist'):
for spec in project_wheel_metadata(path).get_all(field):
for spec in cast(list[Any], project_wheel_metadata(path).get_all(field)):
print(spec)

0 comments on commit 405317a

Please sign in to comment.