diff --git a/src/finch/resources/hris/hris.py b/src/finch/resources/hris/hris.py index 50c5a621..abbd52fd 100644 --- a/src/finch/resources/hris/hris.py +++ b/src/finch/resources/hris/hris.py @@ -10,14 +10,6 @@ CompanyResourceWithStreamingResponse, AsyncCompanyResourceWithStreamingResponse, ) -from .benefits import ( - Benefits, - AsyncBenefits, - BenefitsWithRawResponse, - AsyncBenefitsWithRawResponse, - BenefitsWithStreamingResponse, - AsyncBenefitsWithStreamingResponse, -) from .payments import ( Payments, AsyncPayments, @@ -60,7 +52,14 @@ PayStatementsWithStreamingResponse, AsyncPayStatementsWithStreamingResponse, ) -from .benefits.benefits import Benefits, AsyncBenefits +from .benefits.benefits import ( + Benefits, + AsyncBenefits, + BenefitsWithRawResponse, + AsyncBenefitsWithRawResponse, + BenefitsWithStreamingResponse, + AsyncBenefitsWithStreamingResponse, +) __all__ = ["HRIS", "AsyncHRIS"] diff --git a/src/finch/resources/sandbox/sandbox.py b/src/finch/resources/sandbox/sandbox.py index 33f73435..10dfc5ae 100644 --- a/src/finch/resources/sandbox/sandbox.py +++ b/src/finch/resources/sandbox/sandbox.py @@ -2,14 +2,6 @@ from __future__ import annotations -from .jobs import ( - Jobs, - AsyncJobs, - JobsWithRawResponse, - AsyncJobsWithRawResponse, - JobsWithStreamingResponse, - AsyncJobsWithStreamingResponse, -) from .company import ( Company, AsyncCompany, @@ -35,7 +27,14 @@ DirectoryWithStreamingResponse, AsyncDirectoryWithStreamingResponse, ) -from .jobs.jobs import Jobs, AsyncJobs +from .jobs.jobs import ( + Jobs, + AsyncJobs, + JobsWithRawResponse, + AsyncJobsWithRawResponse, + JobsWithStreamingResponse, + AsyncJobsWithStreamingResponse, +) from .employment import ( Employment, AsyncEmployment, @@ -53,7 +52,7 @@ AsyncIndividualWithStreamingResponse, ) from ..._resource import SyncAPIResource, AsyncAPIResource -from .connections import ( +from .connections.connections import ( Connections, AsyncConnections, ConnectionsWithRawResponse, @@ -61,7 +60,6 @@ ConnectionsWithStreamingResponse, AsyncConnectionsWithStreamingResponse, ) -from .connections.connections import Connections, AsyncConnections __all__ = ["Sandbox", "AsyncSandbox"]