diff options
Diffstat (limited to '.venv/lib/python3.12/site-packages/strictyaml/constants.py')
| -rw-r--r-- | .venv/lib/python3.12/site-packages/strictyaml/constants.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/strictyaml/constants.py b/.venv/lib/python3.12/site-packages/strictyaml/constants.py new file mode 100644 index 00000000..ecc3d05c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/strictyaml/constants.py @@ -0,0 +1,9 @@ +TRUE_VALUES = ["yes", "true", "on", "1", "y"] + +FALSE_VALUES = ["no", "false", "off", "0", "n"] + +BOOL_VALUES = TRUE_VALUES + FALSE_VALUES + +REGEXES = { + "email": r".+?\@.+?", +} |
