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:
@ -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()
|
||||||
|
Reference in New Issue
Block a user