Skip to content

Commit 97f738f

Browse files
committed
Fix linter
1 parent 239cd1c commit 97f738f

File tree

1 file changed

+2
-0
lines changed
  • _delphi_utils_python/delphi_utils/validator

1 file changed

+2
-0
lines changed

_delphi_utils_python/delphi_utils/validator/report.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
class ValidationReport:
88
"""Class for reporting the results of validation."""
99

10+
# pylint: disable=R0902
1011
def __init__(self, errors_to_suppress: List[ValidationFailure],
1112
data_source: str = "", dry_run: bool = False):
1213
"""Initialize a ValidationReport.
@@ -43,6 +44,7 @@ def __init__(self, errors_to_suppress: List[ValidationFailure],
4344
self.raised_warnings = []
4445
self.unsuppressed_errors = []
4546
self.dry_run = dry_run
47+
# pylint: enable=R0902
4648

4749
def add_raised_error(self, error):
4850
"""Add an error to the report.

0 commit comments

Comments
 (0)