There was a problem with the provided weight value.
| 71 | """There was a problem with a provided density value.""" |
| 72 | |
| 73 | class InvalidVolumeError(Error): |
| 74 | """There was a problem with the provided weight value.""" |
| 75 | |
| 76 | def determine_weight(volume, density): |
| 77 | if density < 0: |
no outgoing calls
no test coverage detected