Convenience constructor for length in English Metric Units, e.g. ``width = Emu(457200)``.
| 87 | |
| 88 | |
| 89 | class Emu(Length): |
| 90 | """Convenience constructor for length in English Metric Units, e.g. ``width = |
| 91 | Emu(457200)``.""" |
| 92 | |
| 93 | def __new__(cls, emu: int): |
| 94 | return Length.__new__(cls, int(emu)) |
| 95 | |
| 96 | |
| 97 | class Mm(Length): |
no outgoing calls