Skip to content

Commit fc2215f

Browse files
committed
better function name
1 parent 1fb0e3b commit fc2215f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ayon_api/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def fill_own_attribs(entity: AnyEntityDict) -> None:
256256
own_attrib[key] = copy.deepcopy(value)
257257

258258

259-
def _convert_list_filter_value(value: Any) -> Optional[list[Any]]:
259+
def _convert_filter_value(value: Any) -> Optional[list[Any]]:
260260
if value is None:
261261
return None
262262

@@ -272,7 +272,7 @@ def prepare_list_filters(
272272
output: dict[str, Any], *args: tuple[str, Any], **kwargs: Any
273273
) -> bool:
274274
for key, value in itertools.chain(args, kwargs.items()):
275-
value = _convert_list_filter_value(value)
275+
value = _convert_filter_value(value)
276276
if value is None:
277277
continue
278278
if not value:

0 commit comments

Comments
 (0)