Apply formatting

This commit is contained in:
Ivan Habunek 2024-04-23 17:35:46 +02:00
parent ca38b9239f
commit f1924715ed
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
3 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,5 @@
import os
import httpx
from twitchdl.exceptions import ConsoleError

View File

@ -3,7 +3,7 @@ Twitch API access.
"""
import json
from typing import Dict, Generator, Literal, TypedDict, Optional
from typing import Dict, Generator, Literal, Optional, TypedDict
import click
import httpx
@ -209,7 +209,12 @@ def get_clip_access_token(slug: str) -> ClipAccessToken:
return response["data"]["clip"]
def get_channel_clips(channel_id: str, period: ClipsPeriod, limit: int, after: Optional[str] = None):
def get_channel_clips(
channel_id: str,
period: ClipsPeriod,
limit: int,
after: Optional[str] = None,
):
"""
List channel clips.

View File

@ -1,6 +1,6 @@
import re
from typing import Optional, Union
import unicodedata
from typing import Optional, Union
import click