Skip to content

Commit c348d2b

Browse files
authored
feat: Add lots of methods to OpenHexaClient (#281)
1 parent 8936df8 commit c348d2b

43 files changed

Lines changed: 2874 additions & 52 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# AI coworkers
132+
/.claude/settings.local.json

openhexa/cli/cli.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -596,9 +596,7 @@ def pipelines_list():
596596
if settings.current_workspace is None:
597597
_terminate("No workspace activated", err=True)
598598

599-
workspace_pipelines = (
600-
OpenHexaClient().get_workspace_pipelines(workspace_slug=settings.current_workspace).pipelines.items
601-
)
599+
workspace_pipelines = OpenHexaClient().pipelines(workspace_slug=settings.current_workspace).items
602600
if len(workspace_pipelines) == 0:
603601
click.echo(f"No pipelines in workspace {settings.current_workspace}")
604602
return

0 commit comments

Comments
 (0)