-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
28 lines (23 loc) · 712 Bytes
/
__init__.py
File metadata and controls
28 lines (23 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
RegTriage OpenEnv — Root package imports for backward compatibility.
This allows the old import style to work:
from env import CallQAEnv
from models import AuditAction
While also supporting the new package style:
from regtriage_openenv import CallQAEnv
from regtriage_openenv.models import AuditAction
Note: This is deprecated. Use regtriage_openenv package imports for new code.
"""
# Re-export from the main package for backward compatibility
from regtriage_openenv.environment import CallQAEnv
from regtriage_openenv.models import (
AuditAction,
AuditObservation,
AuditState,
)
__all__ = [
"CallQAEnv",
"AuditAction",
"AuditObservation",
"AuditState",
]