diff --git a/addon/flamenco/job_types_propgroup.py b/addon/flamenco/job_types_propgroup.py index c9986f80..0faf8ecd 100644 --- a/addon/flamenco/job_types_propgroup.py +++ b/addon/flamenco/job_types_propgroup.py @@ -78,7 +78,9 @@ class JobTypePropertyGroup: def label(self, setting_key: str) -> str: """Return the UI label for this setting.""" - return self.bl_rna.properties[setting_key].name + # MyPy doesn't understand the Blender RNA magic. + label: str = self.bl_rna.properties[setting_key].name # type: ignore + return label def eval_and_assign( self,