Skip to content

Commit 1779a2a

Browse files
SP-805 Update Python Dependencies
1 parent 7144a9c commit 1779a2a

File tree

72 files changed

+72
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+72
-2
lines changed

src/bitpay/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
version 4.0.1
66
See https://developer.bitpay.com/reference/concepts for more information.
77
"""
8+
89
import os
910
import json
1011
from typing import List, Optional

src/bitpay/exceptions/bill_creation_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Bill Creation Exception gets raised when request for bill creation gets failed.
33
"""
4+
45
from .bill_exception import BillException
56

67

src/bitpay/exceptions/bill_delivery_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Bill Delivery Exception gets raised when request for bill delivery gets failed.
33
"""
4+
45
from .bill_exception import BillException
56

67

src/bitpay/exceptions/bill_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Bill Exception gets raised when some unexpected error occurs while processing a request
33
or trying to manage bills.
44
"""
5+
56
from .bitpay_exception import BitPayException
67

78

src/bitpay/exceptions/bill_query_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Bill Query Exception gets raised when request for bill retrieval gets failed .
33
"""
4+
45
from .bill_exception import BillException
56

67

src/bitpay/exceptions/bill_update_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Bill Update Exception gets raised when it fails to update bill
33
"""
4+
45
from .bill_exception import BillException
56

67

src/bitpay/exceptions/currency_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Currency Exception gets raised when some unexpected error occurs while processing a request
33
or trying to manage currencies.
44
"""
5+
56
from .bitpay_exception import BitPayException
67

78

src/bitpay/exceptions/currency_query_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Currency Query Exception gets raised when request for currency retrieval gets failed .
33
"""
4+
45
from .invoice_exception import InvoiceException
56

67

src/bitpay/exceptions/invoice_cancellation_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Invoice Cancellation exception gets raised when it fails to cancel invoice.
33
"""
4+
45
from .invoice_exception import InvoiceException
56

67

src/bitpay/exceptions/invoice_creation_exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Invoice Creation Exception gets raised when request for invoice creation gets failed.
33
"""
4+
45
from .invoice_exception import InvoiceException
56

67

0 commit comments

Comments
 (0)