* changed over to package format and removed tools, added poetry * reformat into miner_interface project * add dist to .gitignore * update readme and finish reformatting * Added couple missing imports. (#13) * change name to pyasic Co-authored-by: upstreamdata <brett@upstreamdata.ca> Co-authored-by: Mika Impola <mika@impola.fi>
9 lines
231 B
Python
9 lines
231 B
Python
from .X19 import BMMinerX19
|
|
from pyasic.miners._types import S19a # noqa - Ignore access to _module
|
|
|
|
|
|
class BMMinerS19a(BMMinerX19, S19a):
|
|
def __init__(self, ip: str) -> None:
|
|
super().__init__(ip)
|
|
self.ip = ip
|