@@ -464,7 +464,7 @@ cdef class NumericProperty(Property):
464
464
''' Property that represents a numeric value.
465
465
466
466
:Parameters:
467
- `default `: int or float, defaults to 0
467
+ `defaultvalue `: int or float, defaults to 0
468
468
Specifies the default value of the property.
469
469
470
470
>>> wid = Widget()
@@ -541,7 +541,7 @@ cdef class StringProperty(Property):
541
541
''' Property that represents a string value.
542
542
543
543
:Parameters:
544
- `default `: string, defaults to ''
544
+ `defaultvalue `: string, defaults to ''
545
545
Specifies the default value of the property.
546
546
547
547
'''
@@ -629,7 +629,7 @@ cdef class ListProperty(Property):
629
629
''' Property that represents a list.
630
630
631
631
:Parameters:
632
- `default `: list, defaults to []
632
+ `defaultvalue `: list, defaults to []
633
633
Specifies the default value of the property.
634
634
635
635
.. warning::
@@ -741,7 +741,7 @@ cdef class DictProperty(Property):
741
741
''' Property that represents a dict.
742
742
743
743
:Parameters:
744
- `default `: dict, defaults to None
744
+ `defaultvalue `: dict, defaults to None
745
745
Specifies the default value of the property.
746
746
`rebind`: bool, defaults to False
747
747
See :class:`ObjectProperty` for details.
@@ -783,7 +783,7 @@ cdef class ObjectProperty(Property):
783
783
''' Property that represents a Python object.
784
784
785
785
:Parameters:
786
- `default `: object type
786
+ `defaultvalue `: object type
787
787
Specifies the default value of the property.
788
788
`rebind`: bool, defaults to False
789
789
Whether kv rules using this object as an intermediate attribute
@@ -841,7 +841,7 @@ cdef class BooleanProperty(Property):
841
841
''' Property that represents only a boolean value.
842
842
843
843
:Parameters:
844
- `default `: boolean
844
+ `defaultvalue `: boolean
845
845
Specifies the default value of the property.
846
846
'''
847
847
0 commit comments