fixed indentation problem

This commit is contained in:
James Tauber
2012-12-01 02:15:25 -05:00
parent ab27b745be
commit 8332b1387e

View File

@ -129,15 +129,15 @@ class Correspondence(WorkspaceStructure):
def updateExternalStrength(self): def updateExternalStrength(self):
self.externalStrength = self.support() self.externalStrength = self.support()
def internallyCoherent(self): def internallyCoherent(self):
"""Whether any pair of relevant distinguishing mappings support each other""" """Whether any pair of relevant distinguishing mappings support each other"""
mappings = self.relevantDistinguishingConceptMappings() mappings = self.relevantDistinguishingConceptMappings()
for i in range(0, len(mappings)): for i in range(0, len(mappings)):
for j in range(0, len(mappings)): for j in range(0, len(mappings)):
if i != j: if i != j:
if mappings[i].supports(mappings[j]): if mappings[i].supports(mappings[j]):
return True return True
return False return False
def slippages(self): def slippages(self):
mappings = [m for m in self.conceptMappings if m.slippage()] mappings = [m for m in self.conceptMappings if m.slippage()]