Skip to content

Commit 579fb63

Browse files
committed
small fix of is _existing_file
1 parent c646892 commit 579fb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydra/engine/helpers_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ def is_local_file(f):
537537

538538
def is_existing_file(value):
539539
""" checking if an object is an existing file"""
540-
if value == "":
540+
if value is "":
541541
return False
542542
try:
543543
return Path(value).exists()

0 commit comments

Comments
 (0)