From 81632c06e7ebcf22fc8005ab7ada533af876a0c0 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Fri, 12 Jul 2024 16:01:47 -0400 Subject: [PATCH] 21935: Add a docstring to arvados.commands Mostly to annotate it @private so pdoc skips rendering it. Arvados-DCO-1.1-Signed-off-by: Brett Smith --- sdk/python/arvados/commands/__init__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sdk/python/arvados/commands/__init__.py b/sdk/python/arvados/commands/__init__.py index e69de29bb2..2ec1a43dff 100644 --- a/sdk/python/arvados/commands/__init__.py +++ b/sdk/python/arvados/commands/__init__.py @@ -0,0 +1,12 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 +"""Arvados CLI commands + +This module implements the CLI tools that are shipped with the Arvados Python +SDK. Nothing in this module is intended to be part of the public-facing +SDK API. Classes and functions in this module may be changed or removed at any +time. + +@private +""" -- 2.30.2