fake-bpy-module 20240204__py3-none-any.whl → 20240206__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
bpy/props/__init__.pyi CHANGED
@@ -140,7 +140,7 @@ def EnumProperty(
140
140
  :type description: typing.Optional[str]
141
141
  :param translation_context: Text used as context to disambiguate translations.
142
142
  :type translation_context: typing.Optional[str]
143
- :param default: The default value for this enum, a string from the identifiers used in *items*, or integer matching an item number. If the *ENUM_FLAG* option is used this must be a set of such string identifiers instead. WARNING: Strings can not be specified for dynamic enums (i.e. if a callback function is given as *items* parameter).
143
+ :param default: The default value for this enum, a string from the identifiers used in *items*, or integer matching an item number. If the *ENUM_FLAG* option is used this must be a set of such string identifiers instead. WARNING: Strings cannot be specified for dynamic enums (i.e. if a callback function is given as *items* parameter).
144
144
  :type default: typing.Optional[typing.Union[str, typing.Set]]
145
145
  :param options: `rna_enum_property_flag_enum_items`.
146
146
  :type options: typing.Optional[typing.Set]