mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
hound and suggested changes
This commit is contained in:
parent
4b83446230
commit
d0a79e31f5
2 changed files with 2 additions and 3 deletions
|
|
@ -228,9 +228,9 @@ class CollectTimelineInstances(pyblish.api.ContextPlugin):
|
|||
# first split comment by comma
|
||||
split_comments = []
|
||||
if "," in comment_string:
|
||||
split_comments.extend(iter(comment_string.split(",")))
|
||||
split_comments.extend(comment_string.split(","))
|
||||
elif ";" in comment_string:
|
||||
split_comments.extend(iter(comment_string.split(";")))
|
||||
split_comments.extend(comment_string.split(";"))
|
||||
else:
|
||||
split_comments.append(comment_string)
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ from copy import deepcopy
|
|||
import pyblish.api
|
||||
import openpype.api
|
||||
from openpype.hosts.flame import api as opfapi
|
||||
from pprint import pformat
|
||||
|
||||
|
||||
class ExtractSubsetResources(openpype.api.Extractor):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue