in build_aarch64_wheel.py [0:0]
def get_instance_name(instance) -> Optional[str]: if instance.tags is None: return None for tag in instance.tags: if tag['Key'] == 'Name': return tag['Value'] return None