616 elif (isinstance(node.func.value, ast.Name) and |
614 elif (isinstance(node.func.value, ast.Name) and |
617 node.func.value.id == 'str' and node.args and |
615 node.func.value.id == 'str' and node.args and |
618 self.__isBaseString(node.args[0])): |
616 self.__isBaseString(node.args[0])): |
619 self.calls[node.args[0]] = (node, True) |
617 self.calls[node.args[0]] = (node, True) |
620 super(TextVisitor, self).generic_visit(node) |
618 super(TextVisitor, self).generic_visit(node) |
|
619 |
|
620 # |
|
621 # eflag: noqa = M702 |