Skip to content

Commit b8846df

Browse files
committed
cli: Don't silently drop inspect inputs
1 parent 4917d80 commit b8846df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pypi_attestations/_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def _inspect(args: argparse.Namespace) -> None:
463463
464464
Warning: The information displayed from the attestations are not verified.
465465
"""
466-
attestation_files = [f for f in args.files if f.suffix == ".attestation"]
466+
attestation_files = [f for f in args.files]
467467
_validate_files(attestation_files, should_exist=True)
468468
for file_path in attestation_files:
469469
try:

0 commit comments

Comments
 (0)