Commit d98e5067 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Device component - NCE Driver:

- Fixed URL composition
parent 8ce6c924
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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: