mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2026-08-22 13:13:23 +00:00
few more fixes
This commit is contained in:
parent
338c0fd999
commit
1e9ec7828b
16 changed files with 44 additions and 44 deletions
2
dist/ba_data/python/efro/dataclassio/_api.py
vendored
2
dist/ba_data/python/efro/dataclassio/_api.py
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
#
|
||||
"""Core components of dataclassio."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import dataclasses
|
||||
import typing
|
||||
import warnings
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
#
|
||||
"""Functionality related to capturing nested dataclass paths."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import dataclasses
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@
|
|||
#
|
||||
# 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,8 +5,6 @@
|
|||
#
|
||||
"""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,8 +2,6 @@
|
|||
#
|
||||
"""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,8 +6,6 @@
|
|||
# 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