From 2c5854d05e767ff31015ab3ea27e80d26ccb8ec2 Mon Sep 17 00:00:00 2001 From: Vincent Lee Date: Tue, 8 Oct 2024 19:08:56 +0100 Subject: [PATCH] Export all brackets in brackets module --- pyproject.toml | 2 +- sendou/models/tournament/bracket/__init__.py | 5 +++-- sendou/models/tournament/bracket/bracket.py | 1 - 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c19dacf..c8d2743 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "sendou-py" -version = "1.2.1" +version = "1.2.2" description = "An async Python library for Sendou.ink" authors = [ "Vincent Lee ",] license = "MIT" diff --git a/sendou/models/tournament/bracket/__init__.py b/sendou/models/tournament/bracket/__init__.py index 8646934..262e16c 100644 --- a/sendou/models/tournament/bracket/__init__.py +++ b/sendou/models/tournament/bracket/__init__.py @@ -1,3 +1,4 @@ -from .bracket import Bracket +from .Standing import BracketStanding, StandingStats +from .bracket import BracketMeta, BracketSettings, BracketStage, BracketGroup, BracketRound, BracketMatch, \ + BracketMatchOpponent, BracketData, Bracket from .type import BracketType, RoundType, MatchResult -from .Standing import BracketStanding diff --git a/sendou/models/tournament/bracket/bracket.py b/sendou/models/tournament/bracket/bracket.py index 052b0e2..827daff 100644 --- a/sendou/models/tournament/bracket/bracket.py +++ b/sendou/models/tournament/bracket/bracket.py @@ -35,7 +35,6 @@ class BracketSettings: Bracket Settings Attributes: - size (int): Bracket Size seed_ordering (List[str]): Seed Ordering consolation_final (Optional[bool]): Consolation Final