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.
This commit is contained in:
darnodo
2025-12-26 15:59:25 +01:00
parent f8ef64e9b0
commit 3e76eba46a

View File

@@ -15,7 +15,6 @@ Usage:
"""
from dataclasses import dataclass
from typing import Optional
# =============================================================================