Skip to content

remove redundant list comprehension #547

New issue

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

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions html5lib/html5parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1002,8 +1002,8 @@ def processCharacters(self, token):
self.tree.insertText(token["data"])
# This must be bad for performance
if (self.parser.framesetOK and
any([char not in spaceCharacters
for char in token["data"]])):
any(char not in spaceCharacters
for char in token["data"])):
self.parser.framesetOK = False

def processSpaceCharactersNonPre(self, token):
Expand Down Expand Up @@ -1850,7 +1850,7 @@ def __init__(self, *args, **kwargs):

def flushCharacters(self):
data = "".join([item["data"] for item in self.characterTokens])
if any([item not in spaceCharacters for item in data]):
if any(item not in spaceCharacters for item in data):
token = {"type": tokenTypes["Characters"], "data": data}
self.parser.phases["inTable"].insertText(token)
elif data:
Expand Down