Skip to content

Commit 7bc6bb0

Browse files
authored
__init__.py: fix variable name (#24)
Signed-off-by: Jeff Squyres <[email protected]>
1 parent bfd10e9 commit 7bc6bb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pympistandard/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def _resolve_path(
155155

156156
# convert str path to Path
157157
elif isinstance(given_path, str):
158-
given_path = Path(given_path)
158+
path = Path(given_path)
159159

160160
# use given path
161161
elif isinstance(given_path, Path):

0 commit comments

Comments
 (0)