diff --git a/qnexus/client/backend_snapshots.py b/qnexus/client/backend_snapshots.py deleted file mode 100644 index 67fd728..0000000 --- a/qnexus/client/backend_snapshots.py +++ /dev/null @@ -1,20 +0,0 @@ -"""Client API for backend snapshots in Nexus.""" -# Work in progress - -# https://staging.myqos.com/api-docs#/backend_snapshots - - -# def get(): -# pass - - -# def get_only(): -# pass - - -# def _fetch_by_id(): -# pass - - -# def update(): -# pass diff --git a/qnexus/client/hugr.py b/qnexus/client/hugr.py index b15b50d..90f7e0e 100644 --- a/qnexus/client/hugr.py +++ b/qnexus/client/hugr.py @@ -1,8 +1,4 @@ -"""Client API for HUGR in Nexus. - -N.B. Nexus support for HUGR is experimental, and any HUGRs programs -uploaded to Nexus before stability is achieved might not work in the future. -""" +"""Client API for HUGR in Nexus.""" import base64 from datetime import datetime @@ -176,11 +172,7 @@ def upload( description: str | None = None, properties: PropertiesDict | None = None, ) -> HUGRRef: - """Upload a HUGR to Nexus. - - N.B. HUGR support in Nexus is subject to change. Until full support is achieved any - programs uploaded may not work in the future. - """ + """Upload a HUGR to Nexus.""" project = project or get_active_project(project_required=True) project = cast(ProjectRef, project) diff --git a/qnexus/client/results.py b/qnexus/client/results.py deleted file mode 100644 index 1ceea2a..0000000 --- a/qnexus/client/results.py +++ /dev/null @@ -1,19 +0,0 @@ -"""Client API for results in Nexus.""" - -# https://staging.myqos.com/api-docs#/results - - -# def get(): -# pass - - -# def get_only(): -# pass - - -# def _fetch_by_id(): -# pass - - -# def update(): -# pass