|
2 | 2 |
|
3 | 3 | from __future__ import annotations |
4 | 4 |
|
5 | | -# pylint:disable=too-many-lines,too-many-instance-attributes,too-many-locals |
6 | 5 | from typing import TYPE_CHECKING |
7 | 6 |
|
8 | 7 | import geoip2.models |
@@ -232,7 +231,6 @@ def __init__( |
232 | 231 | self, |
233 | 232 | *, |
234 | 233 | confidence: float | None = None, |
235 | | - # pylint:disable=redefined-builtin |
236 | 234 | id: str | None = None, |
237 | 235 | last_seen: str | None = None, |
238 | 236 | local_time: str | None = None, |
@@ -382,7 +380,6 @@ def __init__( |
382 | 380 | is_issued_in_billing_address_country: bool | None = None, |
383 | 381 | is_prepaid: bool | None = None, |
384 | 382 | is_virtual: bool | None = None, |
385 | | - # pylint:disable=redefined-builtin |
386 | 383 | type: str | None = None, # noqa: A002 |
387 | 384 | ) -> None: |
388 | 385 | """Initialize a CreditCard instance.""" |
@@ -752,7 +749,7 @@ class Reason(_Serializable): |
752 | 749 |
|
753 | 750 | See the `risk reasons documentation <https://dev.maxmind.com/minfraud/api-documentation/responses/#schema--response--risk-score-reason--multiplier-reason>`_ |
754 | 751 | for the current list of reason codes. |
755 | | - """ # pylint:disable=line-too-long |
| 752 | + """ |
756 | 753 |
|
757 | 754 | code: str | None |
758 | 755 | """This value is a machine-readable code identifying the reason. |
@@ -953,7 +950,6 @@ def __init__( |
953 | 950 | funds_remaining: float, |
954 | 951 | device: dict | None = None, |
955 | 952 | email: dict | None = None, |
956 | | - # pylint:disable=redefined-builtin |
957 | 953 | id: str, |
958 | 954 | ip_address: dict | None = None, |
959 | 955 | queries_remaining: int, |
@@ -1062,7 +1058,6 @@ def __init__( |
1062 | 1058 | disposition: dict | None = None, |
1063 | 1059 | email: dict | None = None, |
1064 | 1060 | funds_remaining: float, |
1065 | | - # pylint:disable=redefined-builtin |
1066 | 1061 | id: str, |
1067 | 1062 | ip_address: dict | None = None, |
1068 | 1063 | queries_remaining: int, |
@@ -1130,7 +1125,6 @@ def __init__( |
1130 | 1125 | *, |
1131 | 1126 | disposition: dict | None = None, |
1132 | 1127 | funds_remaining: float, |
1133 | | - # pylint:disable=redefined-builtin |
1134 | 1128 | id: str, |
1135 | 1129 | ip_address: dict | None = None, |
1136 | 1130 | queries_remaining: int, |
|
0 commit comments