Skip to content

Commit 13f427c

Browse files
committed
pylint: Silence output with latest f21 version
1 parent e97789b commit 13f427c

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

bugzilla/rhbugzilla.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ def add_boolean(kwkey, key, bool_id):
286286
or_count = 0
287287

288288
def make_bool_str(prefix):
289+
# pylint: disable=cell-var-from-loop
289290
return "%s%i-%i-%i" % (prefix, bool_id,
290291
and_count, or_count)
291292

tests/pylint.cfg

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ load-plugins=
3434
# multiple time (only on the command line, not in the configuration file where
3535
# it should appear only once).
3636

37-
disable=Design,Format,Similarities,invalid-name,missing-docstring,locally-disabled,unnecessary-lambda,star-args,fixme,global-statement,broad-except,no-self-use,bare-except,
37+
disable=Design,Format,Similarities,invalid-name,missing-docstring,locally-disabled,unnecessary-lambda,star-args,fixme,global-statement,broad-except,no-self-use,bare-except,locally-enabled
3838

3939

4040
[REPORTS]
@@ -44,12 +44,6 @@ disable=Design,Format,Similarities,invalid-name,missing-docstring,locally-disabl
4444
# mypackage.mymodule.MyReporterClass.
4545
#output-format=text
4646

47-
# Include message's id in output
48-
include-ids=no
49-
50-
# Include symbolic ids of messages in output
51-
symbols=no
52-
5347
# Put messages in a separate file for each module / package specified on the
5448
# command line instead of printing them on stdout. Reports (if any) will be
5549
# written in a file name "pylint_global.[txt|html]".

0 commit comments

Comments
 (0)