aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sources/pyside6/doc/extras/QtCore.Property.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/sources/pyside6/doc/extras/QtCore.Property.rst b/sources/pyside6/doc/extras/QtCore.Property.rst
index 5eb299f67..1912b8d23 100644
--- a/sources/pyside6/doc/extras/QtCore.Property.rst
+++ b/sources/pyside6/doc/extras/QtCore.Property.rst
@@ -47,10 +47,13 @@ The full options for ``QtCore.Property`` can be found with ``QtCore.Property.__d
fset: Optional[Callable] = None,
freset: Optional[Callable] = None,
fdel: Optional[Callable] = None,
- doc: str = '', notify: Optional[Callable] = None,
- designable: bool = True, scriptable: bool = True,
+ doc: str = '',
+ notify: Optional[Callable] = None,
+ designable: bool = True,
+ scriptable: bool = True,
stored: bool = True, user: bool = False,
- constant: bool = False, final: bool = False) -> PySide6.QtCore.Property
+ constant: bool = False,
+ final: bool = False) -> PySide6.QtCore.Property
Normally, only ``type``, ``fget``and ``fset`` are used.