You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the automata.fa.dfa.DFA.__init__ function ,the docstring says: allow_partial : bool, default: True.
The DFA document also says that the default value of allow_partial is True.
However, in the parameter list of the function, it codes allow_partial: bool = False.
The text was updated successfully, but these errors were encountered:
@dsr20030703 Okay, I've tweaked the docstring and redeployed the documentation site. The library will have the docstring fix reflected in the help() message upon the next release.
All that to say, I'm considering this issue completed, and closing it out. Thank you again for kindly reporting the disparity!
In the
automata.fa.dfa.DFA.__init__
function ,the docstring says:allow_partial : bool, default: True
.The DFA document also says that the default value of
allow_partial
isTrue
.However, in the parameter list of the function, it codes
allow_partial: bool = False
.The text was updated successfully, but these errors were encountered: