Skip to content

Commit 0455301

Browse files
committed
unmark some non-custom code
1 parent 753c7ad commit 0455301

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/stagehand/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@
3737
APIResponseValidationError,
3838
)
3939
from ._base_client import DefaultHttpxClient, DefaultAioHttpClient, DefaultAsyncHttpxClient
40+
from ._utils._logs import setup_logging as _setup_logging
4041

4142
### <CUSTOM CODE HANDWRITTEN BY STAGEHAND TEAM (not codegen)>
42-
from ._utils._logs import setup_logging as _setup_logging
4343
from ._custom.session import Session, AsyncSession
44+
4445
### </END CUSTOM CODE>
4546

4647
__all__ = [

src/stagehand/_client.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
close_async_client_sea_server,
4242
prepare_async_client_base_url,
4343
)
44+
4445
### </END CUSTOM CODE>
4546

4647
if TYPE_CHECKING:
@@ -183,13 +184,11 @@ def close(self) -> None:
183184
close_sync_client_sea_server(self)
184185
### </END CUSTOM CODE>
185186

186-
### <CUSTOM CODE HANDWRITTEN BY STAGEHAND TEAM (not codegen)>
187187
@cached_property
188188
def sessions(self) -> sessions.SessionsResource:
189189
from .resources.sessions import SessionsResource
190190

191191
return SessionsResource(self)
192-
### </END CUSTOM CODE>
193192

194193
@cached_property
195194
def with_raw_response(self) -> StagehandWithRawResponse:
@@ -462,13 +461,11 @@ async def close(self) -> None:
462461
await close_async_client_sea_server(self)
463462
### </END CUSTOM CODE>
464463

465-
### <CUSTOM CODE HANDWRITTEN BY STAGEHAND TEAM (not codegen)>
466464
@cached_property
467465
def sessions(self) -> sessions.AsyncSessionsResource:
468466
from .resources.sessions import AsyncSessionsResource
469467

470468
return AsyncSessionsResource(self)
471-
### </END CUSTOM CODE>
472469

473470
@cached_property
474471
def with_raw_response(self) -> AsyncStagehandWithRawResponse:

src/stagehand/resources/sessions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### <CUSTOM CODE HANDWRITTEN BY STAGEHAND TEAM (not codegen)>
66
from typing import TYPE_CHECKING, Dict, Optional, cast
7+
78
### </END CUSTOM CODE>
89
from typing_extensions import Literal, overload
910

0 commit comments

Comments
 (0)