Unify the various *_THRESHOLDs

This commit is contained in:
Alexander Hess 2024-10-14 16:36:02 +02:00
commit de740ebb5f
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
3 changed files with 30 additions and 27 deletions

View file

@ -1 +1,8 @@
"""Utilities to test the `lalib` package."""
from lalib import config
DEFAULT_THRESHOLD = config.THRESHOLD
WITHIN_THRESHOLD = config.THRESHOLD / 10
NOT_WITHIN_THRESHOLD = config.THRESHOLD * 10