Skip to content

Commit

Permalink
Fix typo in _get_state_name() docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb531 committed Oct 15, 2023
1 parent 4bcba2f commit 694908e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automata/base/automaton.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Automaton(metaclass=abc.ABCMeta):
@staticmethod
def _get_state_name(state_data: Any) -> str:
"""
Get an string representation of a state. This is used for displaying and
Get a string representation of a state. This is used for displaying and
uses `str` for any unsupported python data types.
"""
if isinstance(state_data, str):
Expand Down

0 comments on commit 694908e

Please sign in to comment.