1import Utils 2 3class Row: 4 def __init__(self, t): 5 self.cells = t 6 self.cooked = Utils.copy(t) 7 self.isEvaled = False
4class Row: 5 def __init__(self, t): 6 self.cells = t 7 self.cooked = Utils.copy(t) 8 self.isEvaled = False
5 def __init__(self, t): 6 self.cells = t 7 self.cooked = Utils.copy(t) 8 self.isEvaled = False