code.Row

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