few more fixes

This commit is contained in:
vishal332008 2026-07-16 16:28:43 +05:30
parent 338c0fd999
commit 1e9ec7828b
16 changed files with 44 additions and 44 deletions

View file

@ -8,8 +8,6 @@ unrecognized attribute data, allowing older clients to interact with newer
data formats in a nondestructive manner.
"""
from __future__ import annotations
import json
from enum import Enum
from typing import TYPE_CHECKING

View file

@ -2,8 +2,6 @@
#
"""Core components of dataclassio."""
from __future__ import annotations
import dataclasses
import typing
import warnings

View file

@ -6,8 +6,6 @@
# frowned upon (stuff like isinstance() is usually encouraged).
# pylint: disable=unidiomatic-typecheck
from __future__ import annotations
from enum import Enum
import dataclasses
import typing

View file

@ -6,8 +6,6 @@
# frowned upon (stuff like isinstance() is usually encouraged).
# pylint: disable=unidiomatic-typecheck
from __future__ import annotations
from enum import Enum
import dataclasses
import typing

View file

@ -2,8 +2,6 @@
#
"""Functionality related to capturing nested dataclass paths."""
from __future__ import annotations
import dataclasses
from typing import TYPE_CHECKING

View file

@ -7,8 +7,6 @@
#
# pylint: disable=unidiomatic-typecheck
from __future__ import annotations
import logging
from enum import Enum
import dataclasses

View file

@ -5,8 +5,6 @@
#
"""Common errors and related functionality."""
from __future__ import annotations
from typing import TYPE_CHECKING, override
import errno

View file

@ -2,8 +2,6 @@
#
"""Functionality related to terminal IO."""
from __future__ import annotations
import sys
import os
from enum import Enum, unique

View file

@ -6,8 +6,6 @@
# pylint: disable=too-many-lines
"""Small handy bits of functionality."""
from __future__ import annotations
import os
import time
import random