connorferster / forallpeople

Python SI units library: your 'daily driver' for calculations.
Apache License 2.0
295 stars 39 forks source link

more rigid testing on operations #70

Open hirschmichael opened 1 year ago

hirschmichael commented 1 year ago

Hi,

I would like 3*m + 2 to raise an Exception, so that the user is forced to write

mm = 1e-3*m
3*m + 2*mm

Thanks