Skip to content

Commit 96b2365

Browse files
committed
Black formatting
Black formatting on routines
1 parent a315db9 commit 96b2365

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

twitchio/ext/routines/__init__.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -232,13 +232,13 @@ def after_routine(self, coro: Callable) -> None:
232232
self._after = coro
233233

234234
def change_interval(
235-
self,
236-
*,
237-
seconds: Optional[float] = 0,
238-
minutes: Optional[float] = 0,
239-
hours: Optional[float] = 0,
240-
time: Optional[datetime.datetime] = None,
241-
wait_first: Optional[bool] = False,
235+
self,
236+
*,
237+
seconds: Optional[float] = 0,
238+
minutes: Optional[float] = 0,
239+
hours: Optional[float] = 0,
240+
time: Optional[datetime.datetime] = None,
241+
wait_first: Optional[bool] = False,
242242
) -> None:
243243
"""Method which schedules the running interval of the task to change.
244244
@@ -291,7 +291,7 @@ def change_interval(
291291
self._time = time_
292292

293293
kwargs: dict = self._kwargs
294-
kwargs['force'] = not wait_first
294+
kwargs["force"] = not wait_first
295295

296296
self.restart(*self._args, **kwargs)
297297

0 commit comments

Comments
 (0)