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
In
l_post = len(post_module) post_module = post_module * (pad_length // l_post + 1) post_module = post_module[:pad_length] assert len(post_module) == pad_length pre_module = inner_index + inner_index[1:-1][::-1] l_pre = len(post_module) pre_module = pre_module * (pad_length // l_pre + 1) pre_module = pre_module[-pad_length:] assert len(pre_module) == pad_length
the code
l_pre = len(post_module)
should be replaced by
l_pre = len(pre_module)
is it right?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
the code
should be replaced by
is it right?
The text was updated successfully, but these errors were encountered: