From dc50a73b22b29a1f405df3237ea17fabd968b37e Mon Sep 17 00:00:00 2001 From: Arthur Date: Tue, 4 Jun 2024 07:55:11 -0700 Subject: [PATCH] 16050 remove module name customization from docs --- docs/customization/custom-scripts.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/customization/custom-scripts.md b/docs/customization/custom-scripts.md index 21ae20f05..2a8f252aa 100644 --- a/docs/customization/custom-scripts.md +++ b/docs/customization/custom-scripts.md @@ -65,12 +65,6 @@ class AnotherCustomScript(Script): script_order = (MyCustomScript, AnotherCustomScript) ``` -## Module Attributes - -### `name` - -You can define `name` within a script module (the Python file which contains one or more scripts) to set the module name. If `name` is not defined, the module's file name will be used. - ## Script Attributes Script attributes are defined under a class named `Meta` within the script. These are optional, but encouraged.