Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
aiohttp>=3.0
parameterized>=0.7.3
python-dateutil>=2.8.0
pyopenssl
pyopenssl
cryptography>=44.0.2
Original file line number Diff line number Diff line change
Expand Up @@ -252,11 +252,11 @@ def recovery_level(self) -> Optional[str]:
return self._attributes.recovery_level if self._attributes else None

@property
def tags(self) -> Dict[str, str]:
def tags(self) -> Optional[Dict[str, str]]:
"""Application specific metadata in the form of key-value pairs.

:returns: A dictionary of tags attached to the key.
:rtype: dict[str, str]
:rtype: dict[str, str] or None
Comment thread
scbedd marked this conversation as resolved.
"""
return self._tags

Expand Down
Loading