I keep getting:
W503 line break before binary operator
Please help me fix my code, as I can't figure out what is wrong here:
def check_actionable(self, user_name, op, changes_table):
return any(user_name in row.inner_text() and row.query_selector(
self.OPS[op]) is not
None and row.query_selector(self.DISABLED) is not None for
row in changes_table)