From ee496a570079a7f0041d8ca7359548ece0af7e53 Mon Sep 17 00:00:00 2001 From: Vyryn <43193760+Vyryn@users.noreply.github.com> Date: Sun, 8 Sep 2024 00:31:26 -0400 Subject: [PATCH] typing.List --- greenwiz/utils/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greenwiz/utils/util.py b/greenwiz/utils/util.py index d6d42cc..80ab04d 100644 --- a/greenwiz/utils/util.py +++ b/greenwiz/utils/util.py @@ -368,7 +368,7 @@ async def addresses_in_csv_from_msg_link(bot, link: str): contents = await addrs_from_txt(msg.attachments[0]) return [x.split(",")[0] for x in contents] -async def send_random_nft_to_each(bot, addresses: List[str], memo: str) -> List[str]: +async def send_random_nft_to_each(bot, addresses: typing.List[str], memo: str) -> typing.List[str]: """Sends a random NFT to each wax address in a given list. ctx.sends a list of transaction hashes as it goes.""" from utils.settings import TIP_ACC_PERMISSION, DEFAULT_WAX_COLLECTION from wax_chain.wax_contracts import atomicassets