Skip to content

Commit c7afd53

Browse files
committed
PTHMINT-52: Fix Ruff D100
1 parent d89f135 commit c7afd53

File tree

298 files changed

+504
-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.

298 files changed

+504
-2
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-
"D100",
103102
"D101",
104103
"D103",
105104
"D104",

src/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""MultiSafepay Python SDK source package."""

src/multisafepay/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""MultiSafepay Python SDK main package."""

src/multisafepay/api/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""API package for MultiSafepay SDK API management components."""
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Base API management classes and utilities for MultiSafepay SDK."""

src/multisafepay/api/base/abstract_manager.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
# See the DISCLAIMER.md file for disclaimer details.
77

8+
"""Abstract base manager class for MultiSafepay API managers."""
9+
810
import urllib.parse
911

1012
from multisafepay.client.client import Client

src/multisafepay/api/base/decorator.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
# See the DISCLAIMER.md file for disclaimer details.
77

8+
"""Decorator class for response model transformations and dependencies."""
9+
810
from typing import Any, Dict, List, Optional
911

1012

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Listing and pagination utilities for API responses."""

src/multisafepay/api/base/listings/cursor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
# See the DISCLAIMER.md file for disclaimer details.
77

8+
"""Cursor implementation for pagination in API listings."""
9+
810
from typing import Optional
911

1012
from multisafepay.model.response_model import ResponseModel

src/multisafepay/api/base/listings/listing.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
# See the DISCLAIMER.md file for disclaimer details.
77

8+
"""Generic listing container for API response collections."""
9+
810
from typing import Any, Dict, Generic, Iterator, List, TypeVar
911

1012
from pydantic.main import BaseModel

0 commit comments

Comments
 (0)