fixed formatting issues

This commit is contained in:
UpstreamData
2022-05-26 13:23:32 -06:00
parent 942f2a1c8d
commit c35b30e949
78 changed files with 177 additions and 173 deletions

View File

@@ -1,5 +1,5 @@
from miners._backends import BTMiner
from miners._types import M20S
from miners._backends import BTMiner # noqa - Ignore access to _module
from miners._types import M20S # noqa - Ignore access to _module
class BTMinerM20S(BTMiner, M20S):

View File

@@ -1,5 +1,5 @@
from miners._backends import BTMiner
from miners._types import M20SPlus
from miners._backends import BTMiner # noqa - Ignore access to _module
from miners._types import M20SPlus # noqa - Ignore access to _module
class BTMinerM20SPlus(BTMiner, M20SPlus):

View File

@@ -1,5 +1,5 @@
from miners._backends import BTMiner
from miners._types import M21
from miners._backends import BTMiner # noqa - Ignore access to _module
from miners._types import M21 # noqa - Ignore access to _module
class BTMinerM21(BTMiner, M21):

View File

@@ -1,5 +1,5 @@
from miners._backends import BTMiner
from miners._types import M21S
from miners._backends import BTMiner # noqa - Ignore access to _module
from miners._types import M21S # noqa - Ignore access to _module
class BTMinerM21S(BTMiner, M21S):

View File

@@ -1,5 +1,5 @@
from miners._backends import BTMiner
from miners._types import M21SPlus
from miners._backends import BTMiner # noqa - Ignore access to _module
from miners._types import M21SPlus # noqa - Ignore access to _module
class BTMinerM21SPlus(BTMiner, M21SPlus):