0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

docs: fixed doc string

This commit is contained in:
2024-06-26 09:46:14 +02:00
parent 327bc54e22
commit f979a63d3d

View File

@ -21,12 +21,12 @@ if PYSIDE6:
import bec_widgets import bec_widgets
def list_editable_packages() -> list[tuple[str, str]]: def list_editable_packages() -> set[str]:
""" """
List all editable packages in the environment. List all editable packages in the environment.
Returns: Returns:
list[tuple[str, str]]: A list of tuples containing the package name and the path to the package. set: A set of paths to editable packages.
""" """
editable_packages = set() editable_packages = set()