Skip to content

Commit ad60969

Browse files
committed
Added pylint disable for f-strings in tests directory
Signed-off-by: dherrada <[email protected]>
1 parent 2be341c commit ad60969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ repos:
3636
name: pylint (tests code)
3737
description: Run pylint rules on "tests/*.py" files
3838
entry: /usr/bin/env bash -c
39-
args: ['([[ ! -d "tests" ]] || for test in $(find . -path "./tests/*.py"); do pylint --disable=missing-docstring $test; done)']
39+
args: ['([[ ! -d "tests" ]] || for test in $(find . -path "./tests/*.py"); do pylint --disable=missing-docstring,consider-using-f-string $test; done)']
4040
language: system

0 commit comments

Comments
 (0)