refactor: optimize imports.

This commit is contained in:
UpstreamData
2024-01-11 15:00:48 -07:00
parent c80ca1415a
commit 4156f93c0d
35 changed files with 9 additions and 76 deletions

View File

@@ -13,16 +13,12 @@
# See the License for the specific language governing permissions and -
# limitations under the License. -
# ------------------------------------------------------------------------------
import asyncio
import inspect
import sys
import unittest
import warnings
from dataclasses import asdict
from pyasic.miners.backends import CGMiner # noqa
from pyasic.miners.base import BaseMiner
from pyasic.miners.miner_factory import MINER_CLASSES, MinerFactory
from pyasic.miners.miner_factory import MINER_CLASSES
class MinersTest(unittest.TestCase):