()
| 30 | |
| 31 | |
| 32 | def _is_armhf(): |
| 33 | # Check if the current platform is ARMHF (32-bit ARM architecture) |
| 34 | architecture = platform.architecture() |
| 35 | return platform.machine().startswith('arm') and architecture[0] == '32bit' |
| 36 | |
| 37 | class PhysicalQuantity(float): |
| 38 | def __new__(cls, value): |
nothing calls this directly
no test coverage detected
searching dependent graphs…