Skip to content

Commit b47c1fa

Browse files
committed
Fix ci
1 parent d183a08 commit b47c1fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/checkstrformat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ def check_expr(expr: Expression) -> None:
10221022
if check_type(type):
10231023
# Python 3 doesn't support b'%c' % str
10241024
if (
1025-
and isinstance(format_expr, BytesExpr)
1025+
isinstance(format_expr, BytesExpr)
10261026
and isinstance(expr, BytesExpr)
10271027
and len(expr.value) != 1
10281028
):

0 commit comments

Comments
 (0)