We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7becc73 commit 1cf456cCopy full SHA for 1cf456c
1 file changed
src/libsemigroups_pybind11/presentation/__init__.py
@@ -88,10 +88,10 @@ class Presentation(_CxxWrapper): # pylint: disable=missing-class-docstring
88
def __eq__(self: Self, other: Self):
89
return _to_cxx(self) == _to_cxx(other)
90
91
+ # TODO this isn't correct, need to also doc passing the alphabet
92
+ # TODO ditto for InversePresentation
93
+ @_copydoc(_PresentationWord.__init__)
94
def __init__(self: Self, *args, **kwargs) -> None:
- """
- Construct a Presentation instance of the type specified by its argument.
95
# super().__init__ checks if there are unexpected kwargs,
96
# and sets _cxx_obj if the unique argument is a cxx_obj of type in _all_wrapped_cxx_types
97
super().__init__(*args, optional_kwargs="word")
0 commit comments