From 3e76eba46af97c56409852df400268f23c105c0f Mon Sep 17 00:00:00 2001 From: darnodo Date: Fri, 26 Dec 2025 15:59:25 +0100 Subject: [PATCH] refactor(yang): remove unused Optional import from paths The `Optional` type was imported from `typing` in `src/yang/paths.py` but was not being used in the file. This change removes the unnecessary import to clean up the code. --- src/yang/paths.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/yang/paths.py b/src/yang/paths.py index 3719bba..3fced74 100644 --- a/src/yang/paths.py +++ b/src/yang/paths.py @@ -15,7 +15,6 @@ Usage: """ from dataclasses import dataclass -from typing import Optional # =============================================================================