From 8afbe52742b5fbdaa7d4b21d6fd2f16c928a96e9 Mon Sep 17 00:00:00 2001 From: Tyler Coles Date: Thu, 15 Feb 2024 17:03:03 -0700 Subject: [PATCH] Typo fix. --- epymorph/engine/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epymorph/engine/context.py b/epymorph/engine/context.py index c73867f2..1d48e41b 100644 --- a/epymorph/engine/context.py +++ b/epymorph/engine/context.py @@ -104,7 +104,7 @@ def _create_attribute_getter(attr: AttributeDef) -> AttributeGetter: data_raw = self._get_attribute_value(attr) data = attr.shape.adapt(self.dim, data_raw, True) if data is None: - msg = f"Attribute '{attr.name}' could not be adpated to the required shape." + msg = f"Attribute '{attr.name}' could not be adapted to the required shape." raise AttributeException(msg) return attr.shape.accessor(data)