File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -749,6 +749,7 @@ def _ExtractCILCParameters(self):
749
749
self .ilChessC = ilChessC
750
750
751
751
def _ExtractDeviatingPixels (self ):
752
+ # pylint: disable=too-many-branches
752
753
pixCnt = 0
753
754
754
755
while (
@@ -785,11 +786,13 @@ def _ExtractDeviatingPixels(self):
785
786
raise RuntimeError ("Adjacent broken and outlier pixels" )
786
787
787
788
def _UniqueListPairs (self , inputList ):
789
+ # pylint: disable=no-self-use
788
790
for i , listValue1 in enumerate (inputList ):
789
791
for listValue2 in inputList [i + 1 :]:
790
792
yield (listValue1 , listValue2 )
791
793
792
794
def _ArePixelsAdjacent (self , pix1 , pix2 ):
795
+ # pylint: disable=no-self-use, chained-comparison
793
796
pixPosDif = pix1 - pix2
794
797
795
798
if pixPosDif > - 34 and pixPosDif < - 30 :
You can’t perform that action at this time.
0 commit comments