From 5e0641634bd8b6d8b143513eeebeb0cbb3db09b1 Mon Sep 17 00:00:00 2001 From: Upstream Data Date: Mon, 2 Dec 2024 15:11:59 -0700 Subject: [PATCH] bug: fix MRO for hiveon --- pyasic/miners/backends/hiveon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyasic/miners/backends/hiveon.py b/pyasic/miners/backends/hiveon.py index d3768402..331b2a15 100644 --- a/pyasic/miners/backends/hiveon.py +++ b/pyasic/miners/backends/hiveon.py @@ -62,7 +62,7 @@ HIVEON_DATA_LOC = DataLocations( ) -class Hiveon(BMMiner, HiveonFirmware): +class Hiveon(HiveonFirmware, BMMiner): data_locations = HIVEON_DATA_LOC async def _get_wattage(self, rpc_stats: dict = None) -> Optional[int]: