| """Taper rules.""" | |
| from __future__ import annotations | |
| _REQUIRES_TAPER = {"benzodiazepine_like", "opioid_like"} | |
| def requires_taper(drug: str) -> bool: | |
| return drug in _REQUIRES_TAPER | |
| """Taper rules.""" | |
| from __future__ import annotations | |
| _REQUIRES_TAPER = {"benzodiazepine_like", "opioid_like"} | |
| def requires_taper(drug: str) -> bool: | |
| return drug in _REQUIRES_TAPER | |