Skip to content

Commit 41f42f2

Browse files
authored
PTHMINT-90: Fix ruff D200 (#40)
1 parent 28b36c4 commit 41f42f2

File tree

79 files changed

+427
-1468
lines changed

Some content is hidden

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

79 files changed

+427
-1468
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ extend-safe-fixes = [
9999
"D415", # docstrings should end with a period, question mark, or exclamation point
100100
]
101101
ignore = [
102-
"D200",
103102
"D203", # no blank line before class
104103
"D205",
105104
"D212", # multi-line summary first line

src/multisafepay/api/paths/auth/auth_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020

2121

2222
class AuthManager(AbstractManager):
23-
"""
24-
A manager class for handling authentication-related operations.
25-
"""
23+
"""A manager class for handling authentication-related operations."""
2624

2725
def __init__(self: "AuthManager", client: Client) -> None:
2826
"""

src/multisafepay/api/paths/capture/capture_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@
2424

2525

2626
class CaptureManager(AbstractManager):
27-
"""
28-
A class to manage capture operations.
29-
"""
27+
"""A class to manage capture operations."""
3028

3129
def __init__(self: "CaptureManager", client: Client) -> None:
3230
"""

src/multisafepay/api/paths/categories/category_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818

1919

2020
class CategoryManager(AbstractManager):
21-
"""
22-
A manager class for handling category-related API requests.
23-
"""
21+
"""A manager class for handling category-related API requests."""
2422

2523
def __init__(self: "CategoryManager", client: Client) -> None:
2624
"""

src/multisafepay/api/paths/gateways/gateway_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@
2626

2727

2828
class GatewayManager(AbstractManager):
29-
"""
30-
Manages gateway-related operations.
31-
"""
29+
"""Manages gateway-related operations."""
3230

3331
def __init__(self: "GatewayManager", client: Client) -> None:
3432
"""

src/multisafepay/api/paths/issuers/issuer_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222

2323

2424
class IssuerManager(AbstractManager):
25-
"""
26-
Manager class for handling issuer-related operations.
27-
"""
25+
"""Manager class for handling issuer-related operations."""
2826

2927
def __init__(self: "IssuerManager", client: Client) -> None:
3028
"""

src/multisafepay/api/paths/me/me_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919

2020

2121
class MeManager(AbstractManager):
22-
"""
23-
A manager class for handling 'me' related API requests.
24-
"""
22+
"""A manager class for handling 'me' related API requests."""
2523

2624
def __init__(self: "MeManager", client: Client) -> None:
2725
"""

src/multisafepay/api/paths/orders/order_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@
4646

4747

4848
class OrderManager(AbstractManager):
49-
"""
50-
Manages operations related to orders, such as creating, updating, capturing, and refunding orders.
51-
"""
49+
"""Manages operations related to orders, such as creating, updating, capturing, and refunding orders."""
5250

5351
def __init__(self: "OrderManager", client: Client) -> None:
5452
"""

src/multisafepay/api/paths/payment_methods/payment_method_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@
2828

2929

3030
class PaymentMethodManager(AbstractManager):
31-
"""
32-
A class representing the PaymentMethodManager.
33-
"""
31+
"""A class representing the PaymentMethodManager."""
3432

3533
def __init__(self: "PaymentMethodManager", client: Client) -> None:
3634
"""

src/multisafepay/api/paths/transactions/transaction_manager.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@
3939

4040

4141
class TransactionManager(AbstractManager):
42-
"""
43-
A class representing the TransactionManager.
44-
"""
42+
"""A class representing the TransactionManager."""
4543

4644
def __init__(self: "TransactionManager", client: Client) -> None:
4745
"""

0 commit comments

Comments
 (0)