mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
tags.keys() returns a list of the keys, sure. But in Python 3 it's a "dict_keys" class, and BOTO is expecting a list. So let's make this work in Python 3. list(tags) returns a list of the keys in Python 2 and Python3. That seems to be what we want.