Fix mypy error

No functional changes.
This commit is contained in:
Sybren A. Stüvel 2023-11-02 13:50:45 +01:00
parent 90a3fac2ad
commit 90186d7a79

View File

@ -143,7 +143,7 @@ class FLAMENCO_OT_eval_setting(FlamencoOpMixin, bpy.types.Operator):
setting_key: bpy.props.StringProperty(name="Setting Key") # type: ignore setting_key: bpy.props.StringProperty(name="Setting Key") # type: ignore
setting_eval: bpy.props.StringProperty(name="Python Expression") # type: ignore setting_eval: bpy.props.StringProperty(name="Python Expression") # type: ignore
eval_description: bpy.props.StringProperty(name="Description", options={"HIDDEN"}) eval_description: bpy.props.StringProperty(name="Description", options={"HIDDEN"}) # type: ignore
@classmethod @classmethod
def description(cls, context, properties): def description(cls, context, properties):