0

我有一个要转换为要使用的列表的集合。我只是无法完成它。

@tasks.loop(minutes=1)
    async def check_current_mutes(self):
        print("AAAAAA")
        mutes = utils.servicecode.IslaDB("Isla", "Muted")
        print(datetime.datetime.now())
        lists = mutes.test_collection.find({'unmute': {'$gte': str(datetime.datetime.now())}})
        print(lists)
        for muted in lists.to_list(length=100):
            print(muted)
            if muted["unmute"] == "Indefinite":
                return
            else:
                if not time.strptime(muted["unmute"]) <= str(datetime.datetime.now()):
                    member = await self.bot.get_user(muted)
                    print(member)

我只需要迭代它来比较其中的值。

4

0 回答 0