Skip to content

Commit d0384a9

Browse files
committed
Avoid redefined-builtin warning for input
1 parent 0b3ebed commit d0384a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ logging-modules=logging
214214

215215

216216
[FORMAT]
217-
218217
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
219218
expected-line-ending-format=
220219

@@ -250,6 +249,8 @@ single-line-if-stmt=no
250249

251250

252251
[BASIC]
252+
# Allow redefinition of input builtins
253+
allowed-redefined-builtins=input
253254

254255
# Naming hint for argument names
255256
argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$

0 commit comments

Comments
 (0)