remove dependencies on unneeded libraries

This commit is contained in:
Nick Sweeting
2024-12-18 18:07:33 -08:00
parent eee9f67df2
commit 7975b47c85
5 changed files with 3 additions and 16 deletions

View File

@@ -4,8 +4,7 @@ import os
import sys
import re
from pathlib import Path
from typing import Type, Tuple, Callable, ClassVar, Dict, Any
from typing_extensions import Annotated
from typing import Type, Tuple, Callable, ClassVar, Dict, Any, Annotated
import toml
from rich import print

View File

@@ -10,9 +10,8 @@ import inspect
import importlib
import itertools
from pathlib import Path
from typing import Dict, Callable, List, Set, Tuple, Iterable, Any, TypeVar, TypedDict, Type, cast, Generic, Mapping, overload, Final, ParamSpec, Literal, Protocol
from typing import Dict, Callable, List, Set, Tuple, Iterable, Any, TypeVar, TypedDict, Type, cast, Generic, Mapping, overload, Final, ParamSpec, Literal, Protocol, Annotated
from types import ModuleType
from typing_extensions import Annotated
from functools import cache
from benedict import benedict