Fix issue probably-meant-fstring found at https://codereview.doctor (#77619)

pull/77654/head
code-review-doctor 2 years ago committed by GitHub
parent 841bdb74eb
commit 578a815271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -151,7 +151,7 @@ def validate_signature_count(value):
match = re.match(SIGNATURE_COUNT_RE, value)
if match is None:
raise ValueError("{value} is not a valid signature count value")
raise ValueError(f"{value} is not a valid signature count value")
return value

Loading…
Cancel
Save