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,7 +1,9 @@
import asyncio
from miners.miner_factory import MinerFactory
from tools.web_monitor._settings.func import get_current_settings
from tools.web_monitor._settings.func import ( # noqa - Ignore access to _module
get_current_settings,
)
async def get_miner_data_dashboard(miner_ip):

View File

@@ -5,7 +5,9 @@ import websockets.exceptions
from fastapi import WebSocket, WebSocketDisconnect, APIRouter
from tools.web_monitor.func import get_current_miner_list
from tools.web_monitor._settings.func import get_current_settings
from tools.web_monitor._settings.func import ( # noqa - Ignore access to _module
get_current_settings,
)
from tools.web_monitor.dashboard.func import get_miner_data_dashboard