Skip to content

Commit

Permalink
[Formatting] Formatting with black
Browse files Browse the repository at this point in the history
  • Loading branch information
gunyu1019 committed Mar 5, 2024
1 parent 1aec4cc commit a81dec6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 1 addition & 4 deletions chzzkpy/chat/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@

from .access_token import AccessToken
from ..base_model import Content
from ..http import (
ChzzkSession,
NaverGameAPISession
)
from ..http import ChzzkSession, NaverGameAPISession


class ChzzkChatSession(NaverGameAPISession):
Expand Down
5 changes: 4 additions & 1 deletion chzzkpy/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,12 @@ def decorator(func):
func.__login_able__ = login_able
func.__login_required__ = login_required
return func

return decorator

async def before_request(self, request: RequestCore, path: str) -> tuple[RequestCore, str]:
async def before_request(
self, request: RequestCore, path: str
) -> tuple[RequestCore, str]:
_log.debug(f"Path({path}) was called.")

# Authorization
Expand Down

0 comments on commit a81dec6

Please sign in to comment.