From 2dcaae12b273cb37d5827393bc5f9d4c5f8e53b9 Mon Sep 17 00:00:00 2001 From: MrCreosote Date: Fri, 24 Jan 2025 12:01:35 -0800 Subject: [PATCH] Import `OutageStatusValue` in `__init__.py` Handle imports for OutageStatusValue in the same way as StatusValue. I tested this locally, seems to work --- src/sfapi_client/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sfapi_client/__init__.py b/src/sfapi_client/__init__.py index 64fddf0..02f5d9a 100644 --- a/src/sfapi_client/__init__.py +++ b/src/sfapi_client/__init__.py @@ -1,5 +1,6 @@ from .client import AsyncClient # noqa: F401 from .client import Client # noqa: F401 from .exceptions import SfApiError # noqa: F401 +from ._models import OutageStatusValue # noqa: F401 from ._models import StatusValue # noqa: F401 from ._models.resources import Resource # noqa: F401