From: Artem Bityutskiy Date: Fri, 23 Nov 2012 12:27:12 +0000 (+0200) Subject: BmapCopy: disable a couple of pylint recommendations X-Git-Tag: v1.0~68 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca4c826bf2e7c358ece498f907930cccd8809aef;p=tools%2Fbmap-tools.git BmapCopy: disable a couple of pylint recommendations Change-Id: Ibae22f9aad139904f21fa0f63c5bdde78ba05a38 Signed-off-by: Artem Bityutskiy --- diff --git a/bmaptools/BmapCopy.py b/bmaptools/BmapCopy.py index df5a141..f7071e2 100644 --- a/bmaptools/BmapCopy.py +++ b/bmaptools/BmapCopy.py @@ -30,8 +30,13 @@ all 4GiB of data. We say that it is a bit more than 100MiB because things like file-system meta-data (inode tables, superblocks, etc), partition table, etc also contribute to the mapped blocks and are also copied. """ -# Disable the "Too many instance attributes" pylint recommendation (R0902) +# Disable the following pylint recommendations: +# * Too many instance attributes (R0902) +# * Too many statements (R0915) +# * Too many branches (R0912) # pylint: disable=R0902 +# pylint: disable=R0915 +# pylint: disable=R0912 import os import stat