Skip to content

Commit c91a14f

Browse files
Fix bad conflict resolution
1 parent a75c186 commit c91a14f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylint/checkers/strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ def visit_const(self, node: astroid.Const):
926926
node.parent, astroid.JoinedStr
927927
):
928928
self._detect_possible_f_string(node)
929-
self._detect_u_string_prefix(node)
929+
self._detect_u_string_prefix(node)
930930

931931
def _detect_possible_f_string(self, node: astroid.Const):
932932
"""Check whether strings include local/global variables in '{}'

0 commit comments

Comments
 (0)