def get_name()

in security_group_report/main.py [0:0]


def get_name(instance):
    if instance.tags:
        for tag in instance.tags:
            if tag["Key"] == "Name":
                return tag["Value"]
    else:
        return "None"