Skip to content

Commit 0091101

Browse files
committed
officer, the docs still aren't compiling
1 parent 980ea59 commit 0091101

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

twitchio/client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
import logging
2929
import traceback
3030
import sys
31-
from typing import Union, Callable, List, Optional, Tuple, Any, Coroutine, Dict, Literal
31+
from typing import Union, Callable, List, Optional, Tuple, Any, Coroutine, Dict
32+
from typing_extensions import Literal
3233

33-
from twitchio.errors import HTTPException, AuthenticationError
34+
from twitchio.errors import HTTPException
3435
from . import models
3536
from .websocket import WSConnection
3637
from .http import TwitchHTTP

twitchio/http.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
import copy
2727
import datetime
2828
import logging
29-
from typing import TYPE_CHECKING, Union, List, Tuple, Any, Dict, Optional, Literal
29+
from typing import TYPE_CHECKING, Union, List, Tuple, Any, Dict, Optional
30+
from typing_extensions import Literal
3031

3132
import aiohttp
3233
from yarl import URL

0 commit comments

Comments
 (0)