Fix mypy errors

Mypy doesn't understand Blender property annotations.
This commit is contained in:
Sybren A. Stüvel 2023-06-01 15:51:44 +02:00
parent 87ff1187ef
commit fbc7c0cfd9

View File

@ -35,9 +35,9 @@ def _manager_url_updated(prefs, context):
class WorkerCluster(bpy.types.PropertyGroup): class WorkerCluster(bpy.types.PropertyGroup):
id: bpy.props.StringProperty(name="id") id: bpy.props.StringProperty(name="id") # type: ignore
name: bpy.props.StringProperty(name="Name") name: bpy.props.StringProperty(name="Name") # type: ignore
description: bpy.props.StringProperty(name="Description") description: bpy.props.StringProperty(name="Description") # type: ignore
class FlamencoPreferences(bpy.types.AddonPreferences): class FlamencoPreferences(bpy.types.AddonPreferences):