From 7c44a9328f15641f9a6f3ec840978097349b7102 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Mon, 8 Feb 2021 12:04:37 +0100 Subject: [PATCH] default value of path input are 2 empty strings --- pype/settings/entities/input_entities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/settings/entities/input_entities.py b/pype/settings/entities/input_entities.py index 917fd7e0be..f1ea2a8b59 100644 --- a/pype/settings/entities/input_entities.py +++ b/pype/settings/entities/input_entities.py @@ -391,7 +391,7 @@ class PathInput(InputEntity): self.with_arguments = self.schema_data.get("with_arguments", False) if self.with_arguments: self.valid_value_types = (list, ) - self.value_on_not_set = [] + self.value_on_not_set = ["", ""] else: self.valid_value_types = (str, ) self.value_on_not_set = ""