pointblank 0.9.0__py3-none-any.whl → 0.9.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pointblank/thresholds.py CHANGED
@@ -574,8 +574,9 @@ class FinalActions:
574
574
  In this example, the `send_alert()` function is defined to check the validation summary for
575
575
  critical failures. If any are found, an alert message is printed to the console. The function is
576
576
  passed to the `FinalActions` class, which ensures it will be executed after all validation steps
577
- are complete. Note that we used the `get_validation_summary()` function to retrieve the summary
578
- of the validation results to help craft the alert message.
577
+ are complete. Note that we used the
578
+ [`get_validation_summary()`](`pointblank.get_validation_summary`) function to retrieve the
579
+ summary of the validation results to help craft the alert message.
579
580
 
580
581
  Multiple final actions can be provided in a sequence. They will be executed in the order they
581
582
  are specified after all validation steps have completed: