mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
[ci] auto-format
This commit is contained in:
parent
161ce61a1c
commit
248ab4360c
1 changed files with 9 additions and 11 deletions
|
|
@ -4,7 +4,16 @@
|
||||||
|
|
||||||
# ba_meta require api 8
|
# ba_meta require api 8
|
||||||
# (see https://ballistica.net/wiki/meta-tag-system)
|
# (see https://ballistica.net/wiki/meta-tag-system)
|
||||||
|
from __future__ import annotations
|
||||||
plugman = dict(
|
plugman = dict(
|
||||||
|
from bascenev1lib.gameutils import SharedObjects
|
||||||
|
from bascenev1lib.actor.powerupbox import PowerupBoxFactory
|
||||||
|
from bascenev1lib.actor.scoreboard import Scoreboard
|
||||||
|
from bascenev1lib.actor.playerspaz import PlayerSpaz
|
||||||
|
import bascenev1 as bs
|
||||||
|
import bauiv1 as bui
|
||||||
|
import babase
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
plugin_name="soccer",
|
plugin_name="soccer",
|
||||||
description="Shoot the ball in left or right edge of the map to score",
|
description="Shoot the ball in left or right edge of the map to score",
|
||||||
external_url="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
|
external_url="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
|
||||||
|
|
@ -12,17 +21,6 @@ plugman = dict(
|
||||||
version="2.1.0",
|
version="2.1.0",
|
||||||
)
|
)
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from typing import TYPE_CHECKING
|
|
||||||
|
|
||||||
import babase
|
|
||||||
import bauiv1 as bui
|
|
||||||
import bascenev1 as bs
|
|
||||||
from bascenev1lib.actor.playerspaz import PlayerSpaz
|
|
||||||
from bascenev1lib.actor.scoreboard import Scoreboard
|
|
||||||
from bascenev1lib.actor.powerupbox import PowerupBoxFactory
|
|
||||||
from bascenev1lib.gameutils import SharedObjects
|
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from typing import Any, Sequence, Dict, Type, List, Optional, Union
|
from typing import Any, Sequence, Dict, Type, List, Optional, Union
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue