Skip to content

Commit 0f97e0a

Browse files
committed
Fix code style issues with Black
1 parent f5b01c2 commit 0f97e0a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

twitchio/models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,6 +655,7 @@ def colour(self) -> str:
655655
def __repr__(self):
656656
return f"<PredictionOutcome outcome_id={self.outcome_id} title={self.title} channel_points={self.channel_points} color={self.color}>"
657657

658+
658659
class Schedule:
659660

660661
__slots__ = ("segments", "user", "vacation")
@@ -708,4 +709,4 @@ def __init__(self, data: dict):
708709
self.end_time = datetime.datetime.strptime(data["end_time"], "%Y-%m-%dT%H:%M:%SZ")
709710

710711
def __repr__(self):
711-
return f"<ScheduleVacation start_time={self.start_time} end_time={self.end_time}>"
712+
return f"<ScheduleVacation start_time={self.start_time} end_time={self.end_time}>"

twitchio/user.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,7 @@ async def fetch_schedule(
750750

751751
return Schedule(self._http, data)
752752

753+
753754
class BitLeaderboardUser(PartialUser):
754755

755756
__slots__ = "rank", "score"

0 commit comments

Comments
 (0)