chalice/awsclient.py [801:809]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        requested_tags: Dict[Any, Any],
        remote_tags: Dict[Any, Any],
    ) -> None:
        tags_to_add = {
            k: v
            for k, v in requested_tags.items()
            if k not in remote_tags or v != remote_tags[k]
        }
        if tags_to_add:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



chalice/awsclient.py [1049:1057]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        requested_tags: Dict[Any, Any],
        remote_tags: Dict[Any, Any],
    ) -> None:
        tags_to_add = {
            k: v
            for k, v in requested_tags.items()
            if k not in remote_tags or v != remote_tags[k]
        }
        if tags_to_add:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



