structure saas with tools
This commit is contained in:
23
.venv/lib/python3.10/site-packages/shapely/_enum.py
Normal file
23
.venv/lib/python3.10/site-packages/shapely/_enum.py
Normal file
@@ -0,0 +1,23 @@
|
||||
from enum import IntEnum
|
||||
|
||||
|
||||
class ParamEnum(IntEnum):
|
||||
"""Wraps IntEnum to provide validation of a requested item.
|
||||
|
||||
Intended for enums used for function parameters.
|
||||
|
||||
Use enum.get_value(item) for this behavior instead of builtin enum[item].
|
||||
"""
|
||||
|
||||
@classmethod
|
||||
def get_value(cls, item):
|
||||
"""Validate item and raise a ValueError with valid options if not present."""
|
||||
try:
|
||||
return cls[item].value
|
||||
except KeyError:
|
||||
valid_options = {e.name for e in cls}
|
||||
raise ValueError(
|
||||
"'{}' is not a valid option, must be one of '{}'".format(
|
||||
item, "', '".join(valid_options)
|
||||
)
|
||||
)
|
||||
Reference in New Issue
Block a user