Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit f3bf66d

Browse files
committed
automation: ignore pylint warning R1732 (consider-using-with)
pylint wants us to use `with` statement for opening files. But since we store and use the file objects in other locations and clean in yet another location this is not easy to fix without some heavy refactoring. At this point it is preferable to just silence the warning.
1 parent 0e0c3ad commit f3bf66d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ disable=arguments-differ,
1717
bad-whitespace,
1818
broad-except,
1919
consider-iterating-dictionary,
20+
consider-using-with,
2021
deprecated-method,
2122
duplicate-except,
2223
fixme,

0 commit comments

Comments
 (0)