hound and suggested changes

This commit is contained in:
Jakub Jezek 2022-03-16 17:44:01 +01:00
parent 4b83446230
commit d0a79e31f5
No known key found for this signature in database
GPG key ID: D8548FBF690B100A
2 changed files with 2 additions and 3 deletions

View file

@ -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)

View file

@ -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):