mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Skip string check
This commit is contained in:
parent
010655007e
commit
e70651bd3f
1 changed files with 1 additions and 4 deletions
|
|
@ -291,10 +291,7 @@ class DeliveryOptionsDialog(QtWidgets.QDialog):
|
|||
templates = {}
|
||||
for template_name, value in anatomy.templates["delivery"].items():
|
||||
directory_template = value["directory"]
|
||||
if (
|
||||
not isinstance(directory_template, str)
|
||||
or not directory_template.startswith('{root')
|
||||
):
|
||||
if not directory_template.startswith('{root'):
|
||||
continue
|
||||
|
||||
templates[template_name] = value
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue