From 3945655f217fc7703c3d145520a7f35071c34318 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Tue, 30 Sep 2025 17:37:22 +0200 Subject: [PATCH] return type in docstring --- client/ayon_core/addon/interfaces.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/client/ayon_core/addon/interfaces.py b/client/ayon_core/addon/interfaces.py index cc7e39218e..bc44fd2d2e 100644 --- a/client/ayon_core/addon/interfaces.py +++ b/client/ayon_core/addon/interfaces.py @@ -186,7 +186,12 @@ class IPluginPaths(AYONInterface): return self._get_plugin_paths_by_type("inventory") def get_loader_action_plugin_paths(self) -> list[str]: - """Receive loader action plugin paths.""" + """Receive loader action plugin paths. + + Returns: + list[str]: Paths to loader action plugins. + + """ return []