From 8332b1387e5b1e3d521e456fdb076eda09c7b94f Mon Sep 17 00:00:00 2001 From: James Tauber Date: Sat, 1 Dec 2012 02:15:25 -0500 Subject: [PATCH] fixed indentation problem --- copycat/correspondence.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/copycat/correspondence.py b/copycat/correspondence.py index 931cda7..7eb3440 100644 --- a/copycat/correspondence.py +++ b/copycat/correspondence.py @@ -129,15 +129,15 @@ class Correspondence(WorkspaceStructure): def updateExternalStrength(self): self.externalStrength = self.support() - def internallyCoherent(self): - """Whether any pair of relevant distinguishing mappings support each other""" - mappings = self.relevantDistinguishingConceptMappings() - for i in range(0, len(mappings)): - for j in range(0, len(mappings)): - if i != j: - if mappings[i].supports(mappings[j]): - return True - return False + def internallyCoherent(self): + """Whether any pair of relevant distinguishing mappings support each other""" + mappings = self.relevantDistinguishingConceptMappings() + for i in range(0, len(mappings)): + for j in range(0, len(mappings)): + if i != j: + if mappings[i].supports(mappings[j]): + return True + return False def slippages(self): mappings = [m for m in self.conceptMappings if m.slippage()]