Skip to content

Commit fc5463b

Browse files
mtnbikencclaude
andcommitted
[hack] Fix line length regression in create-release-tag.py
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ae23adf commit fc5463b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hack/create-release-tag.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,9 @@ def main():
312312
try:
313313
date.fromisoformat(args.date)
314314
except ValueError:
315-
parser.error(f"--date must be a valid YYYY-MM-DD date, got: {args.date!r}")
315+
parser.error(
316+
f"--date must be a valid YYYY-MM-DD date, got: {args.date!r}"
317+
)
316318

317319
version = args.version
318320
tag = f"v{version}"

0 commit comments

Comments
 (0)