Skip to content

Commit 9c45e06

Browse files
committed
bumping version
1 parent 4e89881 commit 9c45e06

2 files changed

Lines changed: 3 additions & 10 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ packages = [
99
{include = "**/*.py", from = "src"},
1010
]
1111
readme = "README.md"
12-
version = "0.25.1"
12+
version = "0.26.0"
1313

1414
[tool.poetry.dependencies]
1515
# For certifi, use ">=" instead of "^" since it upgrades its "major version" every year, not really following semver

src/groundlight/experimental_api.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,7 @@ def __init__(
106106
self.detector_reset_api = DetectorResetApi(self.api_client)
107107

108108
self.edge_api = EdgeApi(self.api_client)
109-
self._edge: EdgeAPI | None = None
110-
111-
@property
112-
def edge(self) -> "EdgeAPI":
113-
"""Access edge-endpoint operations (e.g. ``gl.edge.get_config()``)."""
114-
if self._edge is None:
115-
self._edge = EdgeAPI(self)
116-
return self._edge
109+
self.edge = EdgeAPI(self)
117110

118111
ITEMS_PER_PAGE = 100
119112

@@ -845,7 +838,7 @@ def get_edge_detector_readiness(self) -> dict[str, bool]:
845838
def set_edge_config(
846839
self,
847840
config: EdgeEndpointConfig,
848-
timeout_sec: float = 300,
841+
timeout_sec: float = 600,
849842
) -> EdgeEndpointConfig:
850843
"""Deprecated: use ``gl.edge.set_config()`` instead."""
851844
return self.edge.set_config(config, timeout_sec=timeout_sec)

0 commit comments

Comments
 (0)