File size: 263 Bytes
eea8d2e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Compatibility wrapper for the root clinical trial environment."""

from __future__ import annotations

try:
    from ..env import ClinicalTrialEnvironment
except ImportError:
    from env import ClinicalTrialEnvironment

__all__ = ["ClinicalTrialEnvironment"]