Skip to content

Commit 7fb872f

Browse files
committedNov 25, 2024
Update docs
1 parent 9f5cb33 commit 7fb872f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed
 

‎pyproject.toml

+1-1
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.9"
7+
version = "1.2.10"
88
description = "An async Python library for Sendou.ink"
99
authors = [ "Vincent Lee <vlee@iplabs.ink>",]
1010
license = "MIT"

‎sendou/models/tournament/tournament.py

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ class Tournament(BaseModel):
9898
teams (TournamentTeamInfo): Tournament Team Info
9999
brackets (List[TournamentBracket]): Tournament Brackets
100100
organization_id (Optional[int]): Organization ID
101+
is_finalised (bool): Is Tournament Finalised
101102
"""
102103
id: int
103104
name: str

‎sendou/models/user.py

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ class UserSocials:
1717
Attributes:
1818
twitch (Optional[str]): Twitch Username
1919
twitter (Optional[str]): Twitter Username
20+
battlefy (Optional[str]): Battlefy Username
21+
bsky (Optional[str]): Bsky Username
2022
"""
2123
twitch: Optional[str]
2224
twitter: Optional[str]

0 commit comments

Comments
 (0)
Please sign in to comment.