Fix hound comment warning

line length for comments adjusted
This commit is contained in:
Allan Ihsan 2022-03-21 14:31:58 +03:00
parent 509f328941
commit 15b1c86e88

View file

@ -449,8 +449,10 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
if app in self.aov_filter.keys():
for aov_pattern in self.aov_filter[app]:
# Matching against the AOV pattern in the render files
# In order to match the AOV name, we must compare against the render filename string
# We are grabbing the render filename string from the collection that we have grabbed from expected files (exp_files)
# In order to match the AOV name
# we must compare against the render filename string
# We are grabbing the render filename string
# from the collection that we have grabbed from expected files (exp_files)
render_file_name = os.path.basename(col[0])
if re.match(aov_pattern, render_file_name):
preview = True