We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2948907 + 03d4bca commit 7295a49Copy full SHA for 7295a49
1 file changed
src/vip_client/classes/VipSession.py
@@ -1115,6 +1115,9 @@ def parse_value(input):
1115
# We must use absolute paths to find the relative parts
1116
input_dir = self._local_input_dir.resolve()
1117
input_path = Path(input).resolve()
1118
+ # Check if input_path is a valid file
1119
+ if not input_path.exists():
1120
+ return input
1121
else: # Return input if `_local_input_dir` is unset
1122
return input
1123
# Return the part of `input_path` that is relative to `input_dir` (if relevant)
0 commit comments