Skip to content

Commit b80862d

Browse files
Update activestorage/active.py
Co-authored-by: David Hassell <[email protected]>
1 parent 17684aa commit b80862d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activestorage/active.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def __init__(
130130
if dataset is None:
131131
raise ValueError(f"Must use a valid file name or variable object for dataset. Got {dataset!r}")
132132
if isinstance(dataset, Path) and not dataset.exists():
133-
raise ValueError(f"Path to input file {dataset} does not exist.")
133+
raise ValueError(f"Path to input file {dataset!r} does not exist.")
134134
if not isinstance(dataset, Path) and not isinstance(dataset, str):
135135
print(f"Treating input {dataset} as variable object.")
136136
if not type(dataset) is pyfive.high_level.Dataset:

0 commit comments

Comments
 (0)