Skip to content

Commit 5c0108f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 041d645 commit 5c0108f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_pytask/mark/expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def lex(self, input_: str) -> Iterator[Token]:
102102
else:
103103
raise ParseError(
104104
pos + 1,
105-
'unexpected character "{}"'.format(input_[pos]),
105+
f'unexpected character "{input_[pos]}"',
106106
)
107107
yield Token(TokenType.EOF, "", pos)
108108

0 commit comments

Comments
 (0)