You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
245 B

2 years ago
  1. def runValidator(f, value) -> bool:
  2. """
  3. Attempt to run the user supplied validation function
  4. Fall back to False in the even of any errors
  5. """
  6. try:
  7. return f(value)
  8. except:
  9. return False