From 98fe5f68c72c367a88f605fa368d2c66deb88d66 Mon Sep 17 00:00:00 2001 From: bas Date: Thu, 8 Aug 2024 21:28:32 +0200 Subject: [PATCH] Minor changes to docstrings --- src/dq_suite/input_helpers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dq_suite/input_helpers.py b/src/dq_suite/input_helpers.py index 0cd26f0..4c3539a 100644 --- a/src/dq_suite/input_helpers.py +++ b/src/dq_suite/input_helpers.py @@ -9,7 +9,7 @@ @dataclass() class Rule: """ - Groups together the name of the GX validation rule, together with the + Groups the name of the GX validation rule together with the parameters required to apply this rule. """ @@ -28,9 +28,9 @@ def __getitem__(self, key) -> str | List[Dict[str, Any]] | None: @dataclass() class RulesDict: """ - Groups together a list of Rules, together with the name of the table + Groups a list of Rule-objects together with the name of the table these rules are to be applied to, as well as a unique identifier used for - uniquely identifying outliers. + identifying outliers. """ unique_identifier: str # TODO: List[str] for more complex keys?