Reduce the changes to make the tests not break due to optical changes
This commit is contained in:
parent
43180c6e05
commit
abf4974d40
@ -6,7 +6,7 @@ class CompetitionClass:
|
|||||||
self.name = text
|
self.name = text
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return f"C({self.name})"
|
return f"{self.name}"
|
||||||
|
|
||||||
|
|
||||||
class CombinedCompetitionClass:
|
class CombinedCompetitionClass:
|
||||||
|
@ -6,7 +6,7 @@ class Group:
|
|||||||
self.name = text
|
self.name = text
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return f"G({self.name})"
|
return f"{self.name}"
|
||||||
|
|
||||||
def getContainedGroups(self):
|
def getContainedGroups(self):
|
||||||
return (self,)
|
return (self,)
|
||||||
|
@ -5,6 +5,6 @@ class Place:
|
|||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
if self.placeTo is None:
|
if self.placeTo is None:
|
||||||
return f"P({self.place}.)"
|
return f"{self.place}."
|
||||||
|
|
||||||
return f"P({self.place}.-{self.placeTo}.)"
|
return f"{self.place}.-{self.placeTo}."
|
||||||
|
Loading…
Reference in New Issue
Block a user