Skip to content

Commit 573b55e

Browse files
authored
Merge pull request #379 from EasyPost/EXP-775_isort
chore: isort project
2 parents 367297f + 9cb8af4 commit 573b55e

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

easypost/easypost_object.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
from easypost.constant import NO_ATTRIBUTE_ERROR
1010

11-
1211
EASYPOST_OBJECT_ID_PREFIX_TO_CLASS_NAME_MAP: dict[str, Any] = {
1312
"adr": "Address",
1413
"ak": "ApiKey",

easypost/requestor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
UnknownApiError,
4848
)
4949

50-
5150
STATUS_CODE_TO_ERROR_MAPPING: dict[int, Any] = {
5251
400: BadRequestError,
5352
401: UnauthorizedError,

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ easypost = ["py.typed"]
5050

5151
[tool.ruff]
5252
line-length = 120
53+
54+
[tool.ruff.lint]
55+
extend-select = ["I"]

tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
from easypost.easypost_client import EasyPostClient
1313

14-
1514
EASYPOST_TEST_API_KEY = os.getenv("EASYPOST_TEST_API_KEY")
1615
EASYPOST_PROD_API_KEY = os.getenv("EASYPOST_PROD_API_KEY")
1716
PARTNER_USER_PROD_API_KEY = os.getenv("PARTNER_USER_PROD_API_KEY", "123")

tests/test_referral_customer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from easypost.errors.api.api_error import ApiError
1212
from easypost.models import User
1313

14-
1514
REFERRAL_CUSTOMER_PROD_API_KEY = os.getenv("REFERRAL_CUSTOMER_PROD_API_KEY", "123")
1615

1716

0 commit comments

Comments
 (0)