Commit 21fd9d65 authored by Mohamad Rahhal's avatar Mohamad Rahhal
Browse files

Minor cosmetic changes

parent c16d0a73
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ class _Handler:
        raise NotImplementedError()

    def get_path(self) -> str:
        # Retrieve the OpenConfig path schema used to interrogate the device
        # Retrieve the Nokia path schema used to interrogate the device
        raise NotImplementedError()

    def compose(self, resource_key : str, resource_value : Dict, delete : bool = False) -> Tuple[str, str]:
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ def get_handler(
    elif path is not None:
        path_schema = get_schema(path)
        path_schema = PATH_MAPPER.get(path_schema, path_schema)
        LOGGER.debug("Original path: %s, Schema path: %s", path, path_schema)
        #LOGGER.debug("Original path: %s, Schema path: %s", path, path_schema)
        handler = PATH_TO_HANDLER.get(path_schema)
        LOGGER.debug("Mapped path schema: %s", path_schema)
        if handler is None and raise_if_not_found: