A class to represent a continuous column config Attributes ---------- columns : list[SensitiveEntry] Name of the column
| 124 | |
| 125 | |
| 126 | class SensitiveConfig: |
| 127 | """A class to represent a continuous column config |
| 128 | |
| 129 | Attributes |
| 130 | ---------- |
| 131 | columns : list[SensitiveEntry] |
| 132 | Name of the column |
| 133 | """ |
| 134 | |
| 135 | def __init__(self, columns: list[SensitiveEntry]): |
| 136 | self.columns = columns |