Skip to content

Commit 6885434

Browse files
committed
Remove extra symbol in noqa annotation
Signed-off-by: Facundo Tuesca <[email protected]>
1 parent 29fc359 commit 6885434

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pypi_attestations/_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ def _verify_pypi(args: argparse.Namespace) -> None:
546546
for attestation_bundle in provenance.attestation_bundles:
547547
publisher = attestation_bundle.publisher
548548
_check_repository_identity(expected_repository_url=args.repository, publisher=publisher)
549-
policy = publisher._as_policy() # noqa: SLF001.
549+
policy = publisher._as_policy() # noqa: SLF001
550550
for attestation in attestation_bundle.attestations:
551551
attestation.verify(policy, dist, staging=args.staging, offline=args.offline)
552552
except VerificationError as verification_error:
@@ -567,7 +567,7 @@ def main() -> None:
567567

568568
_logger.debug(args)
569569

570-
args._parser = parser # noqa: SLF001.
570+
args._parser = parser # noqa: SLF001
571571

572572
if args.subcommand == "sign":
573573
_sign(args)

0 commit comments

Comments
 (0)