This is simply the Module class named something else to differentiate it for app logic. The only thing interesting about it is the num property, which is the number of slots for this rack
| 1130 | |
| 1131 | |
| 1132 | class Rack(Module): |
| 1133 | """ |
| 1134 | This is simply the Module class named something else to differentiate |
| 1135 | it for app logic. The only thing interesting about it is the num property, |
| 1136 | which is the number of slots for this rack |
| 1137 | """ |
| 1138 | num = None |