Loading src/device/service/drivers/nce/nce_fan_client.py +2 −2 Original line number Diff line number Diff line Loading @@ -87,12 +87,12 @@ class NCEClient: def __init__( self, address: str, port: int, port: str, scheme: str = 'http', username: Optional[str] = None, password: Optional[str] = None, ) -> None: self._nce_fan_url = NCE_FAN_URL.format(scheme, address, port) self._nce_fan_url = NCE_FAN_URL.format(scheme, address, int(port)) self._auth = None def create_app_flow(self, app_flow_data: dict) -> None: Loading Loading
src/device/service/drivers/nce/nce_fan_client.py +2 −2 Original line number Diff line number Diff line Loading @@ -87,12 +87,12 @@ class NCEClient: def __init__( self, address: str, port: int, port: str, scheme: str = 'http', username: Optional[str] = None, password: Optional[str] = None, ) -> None: self._nce_fan_url = NCE_FAN_URL.format(scheme, address, port) self._nce_fan_url = NCE_FAN_URL.format(scheme, address, int(port)) self._auth = None def create_app_flow(self, app_flow_data: dict) -> None: Loading