Convenience constructor for length in english metric units.
| 80 | |
| 81 | |
| 82 | class Emu(Length): |
| 83 | """Convenience constructor for length in english metric units.""" |
| 84 | |
| 85 | def __new__(cls, emu: int): |
| 86 | return Length.__new__(cls, int(emu)) |
| 87 | |
| 88 | |
| 89 | class Mm(Length): |
no outgoing calls