Skip to content

Commit 1701630

Browse files
Fix python<=3.9-incompatible type annotation
1 parent 6120f89 commit 1701630

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/regenerate_example_result_csv.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import os
2-
from pathlib import Path
32

43
from geophires_x_client import GeophiresXResult
54

65

7-
def _get_file_path(file_name: str | Path) -> str:
6+
def _get_file_path(file_name: str) -> str:
87
return os.path.join(os.path.abspath(os.path.dirname(__file__)), str(file_name))
98

109

0 commit comments

Comments
 (0)