Method: pylint.checkers.variables.VariablesChecker._report_unpacking_non_sequence
Calls: 12, Exceptions: 0, Paths: 2Back
Path 1: 7 calls (0.58)
Assign (7)
'defined at line 74' (2) 'defined at line 8' (1) "'None'" (1) "'1'" (1) 'defined at line 9 of functional.u.unpacking.unpacking' (1) 'defined at line 1...
1def _report_unpacking_non_sequence(self, node: nodes.NodeNG, details: str) -> None:
2 if details and not details.startswith(" "):
3 details = f" {details}"
4 self.add_message("unpacking-non-sequence", node=node, args=details)
Path 2: 5 calls (0.42)
Assign (5)
'' (5)
1def _report_unpacking_non_sequence(self, node: nodes.NodeNG, details: str) -> None:
2 if details and not details.startswith(" "):
3 details = f" {details}"
4 self.add_message("unpacking-non-sequence", node=node, args=details)