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
add_item
It sometimes takes a lot of command calls to construct 1 item. Wouldn't it be convenient if the method looked more like:
def add_item(self, label, *s): self.append(Command("item", options=label)) self.extend(s)
I could issue a PR if this makes sense. Doesn't break backwards compatibility.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It sometimes takes a lot of command calls to construct 1 item. Wouldn't it be convenient if the method looked more like:
I could issue a PR if this makes sense.
Doesn't break backwards compatibility.
The text was updated successfully, but these errors were encountered: