csv_types.Row

 1from src.csv_types.Obj import Obj
 2from src.utils import copy
 3
 4
 5class Row(Obj):
 6    def __init__(self, t):
 7        super().__init__("Row")
 8        self.cells = t
 9        self.cooked = copy(t)
10        self.isEvaled = False
class Row(src.csv_types.Obj.Obj):
 6class Row(Obj):
 7    def __init__(self, t):
 8        super().__init__("Row")
 9        self.cells = t
10        self.cooked = copy(t)
11        self.isEvaled = False
Row(t)
 7    def __init__(self, t):
 8        super().__init__("Row")
 9        self.cells = t
10        self.cooked = copy(t)
11        self.isEvaled = False