Fix mypy errors
Mypy doesn't understand Blender property annotations.
This commit is contained in:
parent
87ff1187ef
commit
fbc7c0cfd9
@ -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):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user