Skip to content

Commit 7bfcea0

Browse files
chore(internal): remove some duplicated imports (#547)
1 parent 3fc385f commit 7bfcea0

File tree

2 files changed

+17
-20
lines changed

2 files changed

+17
-20
lines changed

src/finch/resources/hris/hris.py

+8-9
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,6 @@
1010
CompanyResourceWithStreamingResponse,
1111
AsyncCompanyResourceWithStreamingResponse,
1212
)
13-
from .benefits import (
14-
Benefits,
15-
AsyncBenefits,
16-
BenefitsWithRawResponse,
17-
AsyncBenefitsWithRawResponse,
18-
BenefitsWithStreamingResponse,
19-
AsyncBenefitsWithStreamingResponse,
20-
)
2113
from .payments import (
2214
Payments,
2315
AsyncPayments,
@@ -60,7 +52,14 @@
6052
PayStatementsWithStreamingResponse,
6153
AsyncPayStatementsWithStreamingResponse,
6254
)
63-
from .benefits.benefits import Benefits, AsyncBenefits
55+
from .benefits.benefits import (
56+
Benefits,
57+
AsyncBenefits,
58+
BenefitsWithRawResponse,
59+
AsyncBenefitsWithRawResponse,
60+
BenefitsWithStreamingResponse,
61+
AsyncBenefitsWithStreamingResponse,
62+
)
6463

6564
__all__ = ["HRIS", "AsyncHRIS"]
6665

src/finch/resources/sandbox/sandbox.py

+9-11
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22

33
from __future__ import annotations
44

5-
from .jobs import (
6-
Jobs,
7-
AsyncJobs,
8-
JobsWithRawResponse,
9-
AsyncJobsWithRawResponse,
10-
JobsWithStreamingResponse,
11-
AsyncJobsWithStreamingResponse,
12-
)
135
from .company import (
146
Company,
157
AsyncCompany,
@@ -35,7 +27,14 @@
3527
DirectoryWithStreamingResponse,
3628
AsyncDirectoryWithStreamingResponse,
3729
)
38-
from .jobs.jobs import Jobs, AsyncJobs
30+
from .jobs.jobs import (
31+
Jobs,
32+
AsyncJobs,
33+
JobsWithRawResponse,
34+
AsyncJobsWithRawResponse,
35+
JobsWithStreamingResponse,
36+
AsyncJobsWithStreamingResponse,
37+
)
3938
from .employment import (
4039
Employment,
4140
AsyncEmployment,
@@ -53,15 +52,14 @@
5352
AsyncIndividualWithStreamingResponse,
5453
)
5554
from ..._resource import SyncAPIResource, AsyncAPIResource
56-
from .connections import (
55+
from .connections.connections import (
5756
Connections,
5857
AsyncConnections,
5958
ConnectionsWithRawResponse,
6059
AsyncConnectionsWithRawResponse,
6160
ConnectionsWithStreamingResponse,
6261
AsyncConnectionsWithStreamingResponse,
6362
)
64-
from .connections.connections import Connections, AsyncConnections
6563

6664
__all__ = ["Sandbox", "AsyncSandbox"]
6765

0 commit comments

Comments
 (0)