Skip to content

Commit fd9020c

Browse files
author
Michael Brewer
committed
docs: fix docstrings for enum
1 parent 776a95b commit fd9020c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

aws_lambda_powertools/utilities/data_classes/ses_event.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,13 +320,12 @@ def receipt(self) -> SESReceipt:
320320

321321

322322
class Disposition(Enum):
323-
"""No further actions in the current receipt rule will be processed, but further receipt rules can be processed."""
324-
325323
STOP_RULE = "STOP_RULE"
326-
"""No further actions or receipt rules will be processed."""
324+
"""No further actions in the current receipt rule will be processed, but further receipt rules can be processed."""
327325
STOP_RULE_SET = "STOP_RULE_SET"
328-
"""This means that further actions and receipt rules can be processed."""
326+
"""No further actions or receipt rules will be processed."""
329327
CONTINUE = "CONTINUE"
328+
"""This means that further actions and receipt rules can be processed."""
330329

331330

332331
def disposition_response(disposition: Disposition) -> Dict[str, str]:

0 commit comments

Comments
 (0)