Skip to content

Commit afa9010

Browse files
[Storage] Fix list_blobs include docstring (Azure#25335)
1 parent 433c748 commit afa9010

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

sdk/storage/azure-storage-blob/azure/storage/blob/_container_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,10 +742,11 @@ def list_blobs(self, name_starts_with=None, include=None, **kwargs):
742742
:param str name_starts_with:
743743
Filters the results to return only blobs whose names
744744
begin with the specified prefix.
745-
:param list[str] or str include:
745+
:param include:
746746
Specifies one or more additional datasets to include in the response.
747747
Options include: 'snapshots', 'metadata', 'uncommittedblobs', 'copy', 'deleted', 'deletedwithversions',
748748
'tags', 'versions', 'immutabilitypolicy', 'legalhold'.
749+
:paramtype include: list[str] or str
749750
:keyword int timeout:
750751
The timeout parameter is expressed in seconds.
751752
:returns: An iterable (auto-paging) response of BlobProperties.

sdk/storage/azure-storage-blob/azure/storage/blob/aio/_container_client_async.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,10 +606,11 @@ def list_blobs(self, name_starts_with=None, include=None, **kwargs):
606606
:param str name_starts_with:
607607
Filters the results to return only blobs whose names
608608
begin with the specified prefix.
609-
:param list[str] or str include:
609+
:param include:
610610
Specifies one or more additional datasets to include in the response.
611611
Options include: 'snapshots', 'metadata', 'uncommittedblobs', 'copy', 'deleted', 'deletedwithversions',
612612
'tags', 'versions'.
613+
:paramtype include: list[str] or str
613614
:keyword int timeout:
614615
The timeout parameter is expressed in seconds.
615616
:returns: An iterable (auto-paging) response of BlobProperties.

0 commit comments

Comments
 (0)