File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1818from .base import BaseServerAPI , _PLACEHOLDER
1919
2020if typing .TYPE_CHECKING :
21- from ayon_api .typing import ProductDict , ProductTypeDict , AdvancedFilterDict
21+ from ayon_api .typing import (
22+ ProductDict ,
23+ ProductTypeDict ,
24+ AdvancedFilterDict ,
25+ )
2226
2327
2428class ProductsAPI (BaseServerAPI ):
Original file line number Diff line number Diff line change @@ -145,7 +145,9 @@ def get_representations(
145145 graphql_filters ["versionIds" ] = list (version_ids_filter )
146146
147147 if representation_names_filter :
148- graphql_filters ["representationNames" ] = list (representation_names_filter )
148+ graphql_filters ["representationNames" ] = list (
149+ representation_names_filter
150+ )
149151
150152 if statuses is not None :
151153 statuses = set (statuses )
You can’t perform that action at this time.
0 commit comments