Skip to content

Commit 7fe1d4c

Browse files
authored
Merge pull request #5 from IPLSplatoon/1.2.2expose-bracket
Export all brackets in brackets module
2 parents 3a68f40 + 2c5854d commit 7fe1d4c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "sendou-py"
7-
version = "1.2.1"
7+
version = "1.2.2"
88
description = "An async Python library for Sendou.ink"
99
authors = [ "Vincent Lee <[email protected]>",]
1010
license = "MIT"

sendou/models/tournament/bracket/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
from .bracket import Bracket
1+
from .Standing import BracketStanding, StandingStats
2+
from .bracket import BracketMeta, BracketSettings, BracketStage, BracketGroup, BracketRound, BracketMatch, \
3+
BracketMatchOpponent, BracketData, Bracket
24
from .type import BracketType, RoundType, MatchResult
3-
from .Standing import BracketStanding

sendou/models/tournament/bracket/bracket.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ class BracketSettings:
3535
Bracket Settings
3636
3737
Attributes:
38-
3938
size (int): Bracket Size
4039
seed_ordering (List[str]): Seed Ordering
4140
consolation_final (Optional[bool]): Consolation Final

0 commit comments

Comments
 (0)