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
str
HTML
Currently, it is not obvious when asking if an object is a string. I have to ask if not isinstance(x, HTML) and isinstance(x, str).
if not isinstance(x, HTML) and isinstance(x, str)
I'd happy to add a __str__ method and a tagify() method, but I'd like to remove the parent class of str
__str__
tagify()
The text was updated successfully, but these errors were encountered:
list
TagList
No branches or pull requests
Currently, it is not obvious when asking if an object is a string. I have to ask
if not isinstance(x, HTML) and isinstance(x, str)
.I'd happy to add a
__str__
method and atagify()
method, but I'd like to remove the parent class ofstr
The text was updated successfully, but these errors were encountered: