Skip to content

Commit

Permalink
fix: ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
nhywieza committed Sep 29, 2024
1 parent 71a12fc commit 34667d8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion cozepy/request.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
from typing import (
TYPE_CHECKING,
Any,
Iterable,
Iterator,
List,
Optional,
Tuple,
Type,
TypeVar,
Union, Iterable,
Union,
)

import httpx
Expand Down
2 changes: 1 addition & 1 deletion tests/test_auth.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import time

from tests.config import (
app_oauth,
COZE_JWT_AUTH_KEY_ID,
COZE_JWT_AUTH_PRIVATE_KEY,
app_oauth,
jwt_auth,
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_bot.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from unittest import TestCase

from cozepy import Coze, COZE_CN_BASE_URL
from cozepy import COZE_CN_BASE_URL, Coze
from tests.config import fixed_token_auth, jwt_auth


Expand Down
2 changes: 1 addition & 1 deletion tests/test_file.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from cozepy import Coze, COZE_CN_BASE_URL
from cozepy import COZE_CN_BASE_URL, Coze
from tests.config import fixed_token_auth


Expand Down

0 comments on commit 34667d8

Please sign in to comment.