refactor: remove unneeded lambda and remove pass.

This commit is contained in:
UpstreamData
2024-01-16 15:34:06 -07:00
parent 91a5998b4e
commit acdcfd04cd

View File

@@ -206,7 +206,7 @@ class MinerProtocol(Protocol):
try: try:
async with conn: async with conn:
resp = await conn.run(cmd) resp = await conn.run(cmd)
result = max(resp.stdout, resp.stderr, key=lambda x: len(x)) result = str(max(resp.stdout, resp.stderr, key=len))
return result return result
except Exception as e: except Exception as e:
@@ -264,7 +264,7 @@ class MinerProtocol(Protocol):
config: A [`MinerConfig`][pyasic.config.MinerConfig] containing the mining config you want to switch the miner to. config: A [`MinerConfig`][pyasic.config.MinerConfig] containing the mining config you want to switch the miner to.
user_suffix: A suffix to append to the username when sending to the miner. user_suffix: A suffix to append to the username when sending to the miner.
""" """
pass return None
async def stop_mining(self) -> bool: async def stop_mining(self) -> bool:
"""Stop the mining process of the miner. """Stop the mining process of the miner.