[ci] auto-format

This commit is contained in:
SenjuZoro 2023-07-26 18:55:16 +00:00 committed by github-actions[bot]
parent 693eac6172
commit e7a5df9aac

View file

@ -4,7 +4,6 @@
# https://discord.gg/ucyaesh
# ba_meta require api 8
from __future__ import annotations
@ -20,7 +19,6 @@ if TYPE_CHECKING:
from typing import Any, Type, List, Dict, Tuple, Union, Sequence, Optional
class State:
def __init__(self, bomb=None, grab=False, punch=False, curse=False, required=False, final=False, name=''):
self.bomb = bomb
@ -58,8 +56,10 @@ states = [ State(bomb='normal', name='Basic Bombs'),
State(punch=True, name='Punching only'),
State(curse=True, name='Cursed', final=True)]
class Player(bs.Player['Team']):
"""Our player type for this game."""
def __init__(self):
self.state = None