9 lines
262 B
Python
9 lines
262 B
Python
from miners._backends import BMMiner # noqa - Ignore access to _module
|
|
from miners._types import S17 # noqa - Ignore access to _module
|
|
|
|
|
|
class BMMinerS17(BMMiner, S17):
|
|
def __init__(self, ip: str) -> None:
|
|
super().__init__(ip)
|
|
self.ip = ip
|