Cleanup: add-on, remove unused parameter
No functional changes.
This commit is contained in:
parent
8ddc03d6ef
commit
764973f116
@ -87,7 +87,6 @@ class JobTypePropertyGroup:
|
|||||||
def eval_and_assign(
|
def eval_and_assign(
|
||||||
self,
|
self,
|
||||||
context: bpy.types.Context,
|
context: bpy.types.Context,
|
||||||
job: _SubmittedJob,
|
|
||||||
setting_key: str,
|
setting_key: str,
|
||||||
setting_eval: str,
|
setting_eval: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
@ -134,7 +134,7 @@ class FLAMENCO_OT_eval_setting(FlamencoOpMixin, bpy.types.Operator):
|
|||||||
return {"CANCELLED"}
|
return {"CANCELLED"}
|
||||||
|
|
||||||
propgroup: JobTypePropertyGroup = context.scene.flamenco_job_settings
|
propgroup: JobTypePropertyGroup = context.scene.flamenco_job_settings
|
||||||
propgroup.eval_and_assign(context, job, self.setting_key, self.setting_eval)
|
propgroup.eval_and_assign(context, self.setting_key, self.setting_eval)
|
||||||
return {"FINISHED"}
|
return {"FINISHED"}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user