Skip to content

Commit 0067eee

Browse files
authored
Merge pull request #257 from djarecka/fix/numpy_wfoutput
small fix to #255
2 parents e57bd57 + 579fb63 commit 0067eee

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)