Add config attribute to data and refactor data naming (#81)

* feature: add config to MinerData.  Remove related attributes.

* feature: rename ideal and nominal to expected to make data naming consistent across files.

* refactor: run isort on all files.

* docs: update docstrings.
This commit is contained in:
UpstreamData
2023-12-21 15:20:50 -07:00
committed by GitHub
parent 3d31179562
commit 0e5b811fb9
106 changed files with 439 additions and 506 deletions

View File

@@ -15,11 +15,7 @@
# ------------------------------------------------------------------------------
from pyasic.miners.backends import M6X
from pyasic.miners.types import (
M63VK10,
M63VK20,
M63VK30,
)
from pyasic.miners.types import M63VK10, M63VK20, M63VK30
class BTMinerM63VK10(M6X, M63VK10):

View File

@@ -15,11 +15,7 @@
# ------------------------------------------------------------------------------
from pyasic.miners.backends import M6X
from pyasic.miners.types import (
M63SVK10,
M63SVK20,
M63SVK30,
)
from pyasic.miners.types import M63SVK10, M63SVK20, M63SVK30
class BTMinerM63SVK10(M6X, M63SVK10):

View File

@@ -15,10 +15,7 @@
# ------------------------------------------------------------------------------
from pyasic.miners.backends import M6X
from pyasic.miners.types import (
M66VK20,
M66VK30,
)
from pyasic.miners.types import M66VK20, M66VK30
class BTMinerM66VK20(M6X, M66VK20):