An object created by a build, including the user parameters provided
| 143 | |
| 144 | |
| 145 | class ShapeResult(object): |
| 146 | """ |
| 147 | An object created by a build, including the user parameters provided |
| 148 | """ |
| 149 | |
| 150 | def __init__(self): |
| 151 | self.shape = None |
| 152 | self.options = None |
| 153 | |
| 154 | |
| 155 | class BuildResult(object): |
no outgoing calls
no test coverage detected