def guild_ratio(self, guild: discord.Guild) -> float: """Get the bot-to-human ratio for a guild""" if len(guild.members) < 50: return BOT_RATIO_MIN else: return BOT_RATIO_MAX