bug: fix some issues with return types and missing return statements.

This commit is contained in:
Upstream Data
2023-12-10 20:28:06 -07:00
parent af15c4fbd1
commit bb182bb22d
2 changed files with 3 additions and 1 deletions

View File

@@ -116,7 +116,7 @@ class MinerConfig:
return cls(pools=PoolConfig.from_am_modern(web_conf))
@classmethod
def from_inno(cls, web_pools: dict):
def from_inno(cls, web_pools: list):
return cls(pools=PoolConfig.from_inno(web_pools))
@classmethod