Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c1fd7f4

Browse files
committedJan 16, 2025
black
1 parent 3fc7680 commit c1fd7f4

File tree

6 files changed

+26
-7
lines changed

6 files changed

+26
-7
lines changed
 

‎wise_banking_api_client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
"profile_type",
7979
"PriceValue",
8080
"PayInProduct",
81-
"version",
81+
"version",
8282
"version_tuple",
8383
]

‎wise_banking_api_client/cli.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
"""Command line interface for wise_banking_api_client."""
22

33
from typing import Any, Callable, Optional
4+
45
try:
56
import click
67
except ImportError:
7-
raise ImportError("You need to install wisebanking_api_client[cli]:\n\n pip install wisebanking_api_client[cli]")
8+
raise ImportError(
9+
"You need to install wisebanking_api_client[cli]:\n\n pip install wisebanking_api_client[cli]"
10+
)
811
from pathlib import Path
912

1013

‎wise_banking_api_client/quote.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,23 @@
1313
from pprint import pprint
1414
from typing import Any, Optional
1515

16-
from wise_banking_api_client.model.account import FilledInRecipientAccountRequest, RecipientAccountResponse
16+
from wise_banking_api_client.model.account import (
17+
FilledInRecipientAccountRequest,
18+
RecipientAccountResponse,
19+
)
1720
from wise_banking_api_client.model.profile import Profile
1821

1922
from .endpoint import JsonEndpoint
2023
from munch import munchify
2124

2225
from wise_banking_api_client import Client
2326
from wise_banking_api_client.base import Base
24-
from wise_banking_api_client.model.quote import QuoteRequest, QuoteResponse, ExampleQuoteRequest, QuoteUpdate
27+
from wise_banking_api_client.model.quote import (
28+
QuoteRequest,
29+
QuoteResponse,
30+
ExampleQuoteRequest,
31+
QuoteUpdate,
32+
)
2533

2634

2735
class QuoteService(Base):

‎wise_banking_api_client/recipient_account.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def list(
8181
creator: Optional[int] = None,
8282
active: Optional[bool] = None,
8383
type: Optional[str | AccountRequirementType] = None,
84-
owned_by_customer: Optional[bool] = None
84+
owned_by_customer: Optional[bool] = None,
8585
) -> RecipientAccountListResponse:
8686
"""List existing recipient accounts.
8787

‎wise_banking_api_client/test/conftest.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@
3434
from wise_banking_api_client.model.recipient import Recipient
3535
from wise_banking_api_client.model.recipient.details import RecipientDetails
3636
from wise_banking_api_client.model.account_requirement_type import AccountRequirementType
37-
from wise_banking_api_client.model.transfer import TransferDetails, TransferRequest, TransferResponse
37+
from wise_banking_api_client.model.transfer import (
38+
TransferDetails,
39+
TransferRequest,
40+
TransferResponse,
41+
)
3842
from wise_banking_api_client.test.record import TestClient
3943
from wise_banking_api_client.model.currency import Currency, CurrencyCode
4044

‎wise_banking_api_client/test/test_timestamp.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
from datetime import datetime, timezone
44

5-
from wise_banking_api_client.model.timestamp import DATETIME_FORMAT, parse_timestamp, serialize_timestamp
5+
from wise_banking_api_client.model.timestamp import (
6+
DATETIME_FORMAT,
7+
parse_timestamp,
8+
serialize_timestamp,
9+
)
610

711

812
def test_parse_example_stamp():

0 commit comments

Comments
 (0)
Please sign in to comment.