Why
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
shap_e/util/collections.py
|
@ -1,8 +1,11 @@ |
|
|
from collections import OrderedDict |
|
|
from collections import OrderedDict |
|
|
from typing import Any, Callable, Dict, List, Optional |
|
|
from typing import Any, Callable, Dict, List, Optional |
|
|
|
|
|
from typing import OrderedDict, Generic, TypeVar |
|
|
|
|
|
|
|
|
|
|
|
K = TypeVar('K') |
|
|
|
|
|
V = TypeVar('V') |
|
|
|
|
|
|
|
|
class AttrDict(OrderedDict): |
|
|
class AttrDict(OrderedDict[K, V], Generic[K, V]): |
|
|
""" |
|
|
""" |
|
|
An attribute dictionary that automatically handles nested keys joined by "/". |
|
|
An attribute dictionary that automatically handles nested keys joined by "/". |
|
|
|
|
|
|
|
|