From 823e1ccaac6f81ac3996183e096c076910d25844 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 11:12:24 +0000 Subject: [PATCH] chore(internal): remove some duplicated imports --- src/finch/resources/hris/hris.py | 17 ++++++++--------- src/finch/resources/sandbox/sandbox.py | 20 +++++++++----------- 2 files changed, 17 insertions(+), 20 deletions(-) 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"]