Skip to content

Commit

Permalink
typo(device_controller.py): fix typo in multi inheritance error message
Browse files Browse the repository at this point in the history
  • Loading branch information
matosys committed Oct 14, 2024
1 parent 91642ea commit 829f3c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_balder/controllers/device_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def get_next_parent_class(self) -> Union[Type[Device], None]:
if issubclass(cur_base, Device):
if next_base_class is not None:
raise MultiInheritanceError(
f"found more than one Devuce parent classes for `{self.related_cls.__name__}` "
f"found more than one Device parent classes for `{self.related_cls.__name__}` "
f"- multi inheritance is not allowed for Device classes")
next_base_class = cur_base
if next_base_class == Device:
Expand Down

0 comments on commit 829f3c5

Please sign in to comment.