Skip to content

Commit

Permalink
cleanup imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rnag committed Jan 15, 2025
1 parent 0ae4ebc commit a2bf461
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions dataclass_wizard/v1/loaders.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# TODO cleanup imports

import collections.abc as abc
import dataclasses

from base64 import b64decode
from collections import defaultdict, deque
from dataclasses import is_dataclass, MISSING, Field
Expand All @@ -12,8 +11,8 @@
# noinspection PyUnresolvedReferences,PyProtectedMember
from typing import (
Any, Type, Dict, List, Tuple, Iterable, Sequence, Union,
NamedTupleMeta,
SupportsFloat, AnyStr, Text, Callable, Optional, cast, Literal, Annotated, NamedTuple
NamedTupleMeta, SupportsFloat, AnyStr, Text, Callable,
Optional, Literal, Annotated, NamedTuple, cast,
)
from uuid import UUID

Expand All @@ -37,7 +36,7 @@
from ..type_def import (
DefFactory, NoneType, JSONObject,
PyLiteralString,
T, DT
T,
)
# noinspection PyProtectedMember
from ..utils.dataclass_compat import _set_new_attribute
Expand Down

0 comments on commit a2bf461

Please sign in to comment.