We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
When constructing a CodeBookBuilder, the class method .codebook fails when providing a codebook built with lace.Codebook.
CodeBookBuilder
.codebook
lace.Codebook
Is this a regression? No.
To Reproduce
import lace def test_empty_codebook_builder(): codebook = lace.Codebook("empty") _builder = lace.CodebookBuilder.codebook(codebook) test_empty_codebook_builder()
Fails with
TypeError: argument 'codebook': 'Codebook' object cannot be converted to 'Codebook'.
TypeError: argument 'codebook': 'Codebook' object cannot be converted to 'Codebook'
Expected behavior
A working CodebookBuilder should be created.
CodebookBuilder
The text was updated successfully, but these errors were encountered:
schmidmt
No branches or pull requests
Describe the bug
When constructing a
CodeBookBuilder
, the class method.codebook
fails when providing a codebook built withlace.Codebook
.Is this a regression?
No.
To Reproduce
Fails with
TypeError: argument 'codebook': 'Codebook' object cannot be converted to 'Codebook'
.Expected behavior
A working
CodebookBuilder
should be created.The text was updated successfully, but these errors were encountered: