will remove these in the end

This commit is contained in:
vishal332008 2026-07-16 16:45:53 +05:30
parent fdd2f5e39f
commit 099ca775f1
10 changed files with 18 additions and 1 deletions

1
.gitignore vendored
View file

@ -13,4 +13,3 @@ dist/ba_root/cache/*
dist/ba_root/*.json
dist/ba_root/config.json
dist/*.keys
dist/ba_data/*

View file

@ -8,6 +8,8 @@ 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,6 +2,8 @@
#
"""Core components of dataclassio."""
from __future__ import annotations
import dataclasses
import typing
import warnings

View file

@ -6,6 +6,8 @@
# 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,6 +6,8 @@
# 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,6 +2,8 @@
#
"""Functionality related to capturing nested dataclass paths."""
from __future__ import annotations
import dataclasses
from typing import TYPE_CHECKING

View file

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

View file

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

View file

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

View file

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