Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Jul 9, 2024
1 parent 5be741a commit 61d8fcb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_carrier_account.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from unittest.mock import patch

import pytest
from easypost.errors.api.api_error import ApiError
from easypost.models import CarrierAccount
Expand Down Expand Up @@ -124,7 +122,7 @@ def test_carrier_account_update_ups(prod_client):

carrier_account = prod_client.carrier_account.create(**params)

updated_carrier_account = prod_client.carrier_account.update(carrier_account.id, account_number="987654321")
prod_client.carrier_account.update(carrier_account.id, account_number="987654321")

assert isinstance(carrier_account, CarrierAccount)
assert str.startswith(carrier_account.id, "ca_")
Expand Down

0 comments on commit 61d8fcb

Please sign in to comment.