Skip to content

Commit df0fdf6

Browse files
Initialization constraints message tweak
1 parent d977550 commit df0fdf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hip_ra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, file_path_or_params_dict: Any):
2121
)
2222
file_path_or_params_dict = str(tmp_file_path)
2323
elif not isinstance(file_path_or_params_dict, (str, Path)):
24-
raise ValueError('Provide either file path as string or parameters as dict')
24+
raise ValueError('Provide either file path (as Path or string) or parameters as dict')
2525

2626
self._input_file_path = Path(file_path_or_params_dict)
2727
self._output_file_path = Path(

0 commit comments

Comments
 (0)