Skip to content

Commit 28b36c4

Browse files
zulquerdanielcivit
authored andcommitted
PTHMINT-88: Fix ruff D104 and D107 (#39)
1 parent ffdfce0 commit 28b36c4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,6 @@ extend-safe-fixes = [
9999
"D415", # docstrings should end with a period, question mark, or exclamation point
100100
]
101101
ignore = [
102-
"D104",
103-
"D107",
104102
"D200",
105103
"D203", # no blank line before class
106104
"D205",

tests/multisafepay/unit/api/base/listings/test_unit_listing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class MockItem:
1515
"""Mock item for testing purposes."""
1616

1717
def __init__(self: "MockItem", value: object) -> None:
18+
"""Initialize MockItem with a value."""
1819
self.value = value
1920

2021

0 commit comments

Comments
 (0)