diff options
author | Kian-Meng Ang | 2022-11-25 12:30:21 +0800 |
---|---|---|
committer | GitHub | 2022-11-24 21:30:21 -0700 |
commit | df5493dd2a9a884660ee2a491377237071493c76 (patch) | |
tree | 29f02baeccc1883a677f3f445df64eb6f07c02e8 /stator | |
parent | 786d6190f856fddb32157764717f871c6f8cb3fa (diff) | |
download | takahe-df5493dd2a9a884660ee2a491377237071493c76.tar.gz takahe-df5493dd2a9a884660ee2a491377237071493c76.tar.bz2 takahe-df5493dd2a9a884660ee2a491377237071493c76.zip |
Fix typos
Found via `codespell -S ./static -L keypair`
Diffstat (limited to 'stator')
-rw-r--r-- | stator/graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stator/graph.py b/stator/graph.py index ef81d75..436638b 100644 --- a/stator/graph.py +++ b/stator/graph.py @@ -14,7 +14,7 @@ class StateGraph: automatic_states: ClassVar[Set["State"]] def __init_subclass__(cls) -> None: - # Collect state memebers + # Collect state members cls.states = {} for name, value in cls.__dict__.items(): if name in ["__module__", "__doc__", "states"]: |