mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2026-08-15 13:04:30 +00:00
will remove these in the end
This commit is contained in:
parent
fdd2f5e39f
commit
099ca775f1
10 changed files with 18 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -13,4 +13,3 @@ dist/ba_root/cache/*
|
|||
dist/ba_root/*.json
|
||||
dist/ba_root/config.json
|
||||
dist/*.keys
|
||||
dist/ba_data/*
|
||||
|
|
|
|||
2
dist/ba_data/python/efro/dataclassio/_api.py
vendored
2
dist/ba_data/python/efro/dataclassio/_api.py
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
#
|
||||
"""Core components of dataclassio."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import dataclasses
|
||||
import typing
|
||||
import warnings
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
#
|
||||
"""Functionality related to capturing nested dataclass paths."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import dataclasses
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
#
|
||||
# pylint: disable=unidiomatic-typecheck
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
from enum import Enum
|
||||
import dataclasses
|
||||
|
|
|
|||
2
dist/ba_data/python/efro/error.py
vendored
2
dist/ba_data/python/efro/error.py
vendored
|
|
@ -5,6 +5,8 @@
|
|||
#
|
||||
"""Common errors and related functionality."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING, override
|
||||
import errno
|
||||
|
||||
|
|
|
|||
2
dist/ba_data/python/efro/terminal.py
vendored
2
dist/ba_data/python/efro/terminal.py
vendored
|
|
@ -2,6 +2,8 @@
|
|||
#
|
||||
"""Functionality related to terminal IO."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import sys
|
||||
import os
|
||||
from enum import Enum, unique
|
||||
|
|
|
|||
2
dist/ba_data/python/efro/util.py
vendored
2
dist/ba_data/python/efro/util.py
vendored
|
|
@ -6,6 +6,8 @@
|
|||
# pylint: disable=too-many-lines
|
||||
"""Small handy bits of functionality."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import os
|
||||
import time
|
||||
import random
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue