mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
Fix formatting
Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
parent
170b1ab9dc
commit
ea626e1257
1 changed files with 4 additions and 2 deletions
|
|
@ -1839,8 +1839,10 @@ class PublisherController(BasePublisherController):
|
|||
)
|
||||
for identifier, creator in self._create_context.creators.items():
|
||||
try:
|
||||
if (allowed_creator_identifiers and
|
||||
identifier not in allowed_creator_identifiers):
|
||||
if (
|
||||
allowed_creator_identifiers is not None
|
||||
and identifier not in allowed_creator_identifiers
|
||||
):
|
||||
self.log.debug(f"{identifier} not allowed for context")
|
||||
continue
|
||||
output[identifier] = CreatorItem.from_creator(creator)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue