refactor: optimize imports.

This commit is contained in:
UpstreamData
2024-01-11 15:00:48 -07:00
parent 6f64cc5e0d
commit 2ef85d3868
35 changed files with 10 additions and 77 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):