From ec3d12929e54790434f4a7068bc8fe37b120601d Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 11:59:52 -0500 Subject: [PATCH] spelling: instantiate Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tools/resources/resource_map/resource_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/resources/resource_map/resource_generator.py b/tools/resources/resource_map/resource_generator.py index 87db41d4..9e185d0f 100644 --- a/tools/resources/resource_map/resource_generator.py +++ b/tools/resources/resource_map/resource_generator.py @@ -31,7 +31,7 @@ class ResourceGeneratorMetaclass(type): if cls.type: _ResourceGenerators[cls.type] = cls -# Instatiate the metaclass into a baseclass we can use elsewhere. +# Instantiate the metaclass into a baseclass we can use elsewhere. ResourceGeneratorBase = ResourceGeneratorMetaclass('ResourceGenerator', (object,), {})