Skip to content

Commit 121d56d

Browse files
committed
Test 3: Python Test 1
1 parent 51cae25 commit 121d56d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tools/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
pygit2==1.7.2
1+
pygit2==1.13.1
22
bidict==0.22.0
33
Pillow==9.0.1
44

55
# changelogs
6-
PyYaml==5.4
6+
PyYaml==6.0.2
77
beautifulsoup4==4.9.3

tools/validate_dme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def compare_lines(a, b):
8484
if a_segment != b_segment:
8585
return (a_segment > b_segment) - (a_segment < b_segment)
8686

87-
raise f"Two lines were exactly the same ({a} vs. {b})"
87+
raise RuntimeError("Two lines were exactly the same ({a} vs. {b})")
8888

8989
sorted_lines = sorted(lines, key = functools.cmp_to_key(compare_lines))
9090
for (index, line) in enumerate(lines):

0 commit comments

Comments
 (0)