lint: use this.services instead of global here

This is the last error for the mandatory eslint rules. Now we can put a
rule into place so that CI always fails when there's an undefined
variable, which I think is pretty cool.
This commit is contained in:
KernelDeimos
2025-11-20 21:21:26 -05:00
committed by Eric Dubé
parent 7b38131b65
commit 12559f7d28
@@ -524,7 +524,7 @@ class DriverService extends BaseService {
? method_spec.result_choices[0].type
: method_spec.result.type
;
const svc_coercion = services.get('coercion');
const svc_coercion = this.services.get('coercion');
result = await svc_coercion.coerce(desired_type, result);
}
return result;