Skip to content

Commit 0c61b98

Browse files
committed
format PR title validation script: wrap long lines for readability
1 parent 6348eca commit 0c61b98

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scripts/check_pr_title.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,12 @@ def main():
3434
# Print detailed guidance with templates and example
3535
print("❌ Invalid PR title format")
3636
print("\nAllowed PR title formats:")
37-
print("- [TASK] <Task Number>-<Variant number>. <Last Name> <First Name> <Middle Name>. <Group number>. <Task name>.")
38-
print(" Example: [TASK] 2-12. Иванов Иван Иванович. 2341-а234. Вычисление суммы элементов вектора.")
37+
print(
38+
"- [TASK] <Task Number>-<Variant number>. <Last Name> <First Name> <Middle Name>. <Group number>. <Task name>."
39+
)
40+
print(
41+
" Example: [TASK] 2-12. Иванов Иван Иванович. 2341-а234. Вычисление суммы элементов вектора."
42+
)
3943
print("- [DEV] <any text>")
4044
sys.exit(1)
4145

0 commit comments

Comments
 (0)