Skip to content

Commit 0fa73ff

Browse files
committed
chore: add extension to temporary morph file
1 parent 9839b6c commit 0fa73ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
def create_morph_data_file(
22
data_dir_path, x_morph, y_morph, x_target, y_target
33
):
4-
morph_file = data_dir_path / "morph_data"
4+
morph_file = data_dir_path / "morph_data.txt"
55
morph_data_text = [
66
str(x_morph[i]) + " " + str(y_morph[i]) for i in range(len(x_morph))
77
]
88
morph_data_text = "\n".join(morph_data_text)
99
morph_file.write_text(morph_data_text)
10-
target_file = data_dir_path / "target_data"
10+
target_file = data_dir_path / "target_data.txt"
1111
target_data_text = [
1212
str(x_target[i]) + " " + str(y_target[i]) for i in range(len(x_target))
1313
]

0 commit comments

Comments
 (0)