From f19422e1f057719f4aef6431481cd9891429a2ad Mon Sep 17 00:00:00 2001 From: Nick Todd Date: Wed, 12 Mar 2025 10:22:14 +0000 Subject: [PATCH] #3110: Replace "identifier" with "discriminator". --- docs/source/how_to_guides/custom_actions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/how_to_guides/custom_actions.rst b/docs/source/how_to_guides/custom_actions.rst index 4b51e76a..7874981d 100644 --- a/docs/source/how_to_guides/custom_actions.rst +++ b/docs/source/how_to_guides/custom_actions.rst @@ -18,7 +18,7 @@ An example of a custom action is seen below, with key information about what is .. code:: Python - class ExampleActionClass(AbstractAction, identifier="ExampleActions"): + class ExampleActionClass(AbstractAction, discriminator="ExampleActions"): """Example Action Class""" config: ExampleAction.ConfigSchema(AbstractAction.ConfigSchema)