py.lib

Yohn Y. 2022-08-27 Parent:4f4cc2fc9805

40:366c9fe26d76 Go to Latest

py.lib/type_utils/dataclass_utils.py

. Не импортируем ненужное.

History
     1.1 --- a/type_utils/dataclass_utils.py	Thu Aug 25 00:41:37 2022 +0300
     1.2 +++ b/type_utils/dataclass_utils.py	Sat Aug 27 11:10:16 2022 +0300
     1.3 @@ -5,8 +5,8 @@
     1.4  НЕ РАБОТАЕТ БЕЗ ОСТАЛЬНОГО МОДУЛЯ type_utils
     1.5  """
     1.6  
     1.7 -from dataclasses import fields, is_dataclass, asdict
     1.8 -from typing import Union, Dict, Any, Iterable
     1.9 +from dataclasses import fields, is_dataclass
    1.10 +from typing import Union, Dict, Any
    1.11  from .type_descriptor import get_type_describer
    1.12  
    1.13