Skip to content

Commit 6b1341d

Browse files
authored
Added missing return type for get_user_delegation_key
1 parent 329f121 commit 6b1341d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

azure-storage-blob/azure/storage/blob/baseblobservice.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,8 @@ def get_user_delegation_key(self, key_start_time, key_expiry_time, timeout=None)
549549
A DateTime value. Indicates when the key stops being valid.
550550
:param int timeout:
551551
The timeout parameter is expressed in seconds.
552-
:return:
552+
:return: The user delegation key.
553+
:rtype: ~azure.storage.blob.models.UserDelegationKey
553554
"""
554555
_validate_not_none('key_start_time', key_start_time)
555556
_validate_not_none('key_end_time', key_expiry_time)

0 commit comments

Comments
 (0)