1447 self.__error(node.lineno - 1, node.col_offset, "M267", node.name) |
1447 self.__error(node.lineno - 1, node.col_offset, "M267", node.name) |
1448 |
1448 |
1449 ####################################################################### |
1449 ####################################################################### |
1450 ## The following methods check for implicitly concatenated strings. |
1450 ## The following methods check for implicitly concatenated strings. |
1451 ## |
1451 ## |
1452 ## These methods are adapted from: flake8-implicit-str-concat v0.4.0 |
1452 ## These methods are adapted from: flake8-implicit-str-concat v0.5.0 |
1453 ## Original: Copyright (c) 2023 Dylan Turner |
1453 ## Original: Copyright (c) 2023 Dylan Turner |
1454 ####################################################################### |
1454 ####################################################################### |
1455 |
1455 |
1456 if sys.version_info < (3, 12): |
1456 if sys.version_info < (3, 12): |
1457 |
1457 |