refactor(core): Include native Python option in Code node (#18331)

This commit is contained in:
Iván Ovejero
2025-08-18 12:25:47 +02:00
committed by GitHub
parent adaa1180eb
commit 47cb4a07ca
6 changed files with 146 additions and 48 deletions

View File

@@ -0,0 +1,7 @@
import { UserError } from 'n8n-workflow';
export class NativePythonWithoutRunnerError extends UserError {
constructor() {
super('To use native Python, please use runners by setting `N8N_RUNNERS_ENABLED=true`.');
}
}