(self, x)
| 56 | __rmul__ = __mul__ |
| 57 | |
| 58 | def __truediv__(self, x): |
| 59 | return PhysicalQuantity(float(self) / float(x)) |
| 60 | |
| 61 | def __rtruediv__(self, x): |
| 62 | return PhysicalQuantity(float(x) / float(self)) |
nothing calls this directly
no test coverage detected