Eleiber
Eleiber
I know this is an old issue, but are there any updates on this?
Hi! I know you may be confused by the name, but this have absolutely nothing to do with Fortnite, nor Epic Games. It's just a Discord text game which I...
Okay, already tested and the same error happens on the [old source](https://gist.github.com/Eleiber/a0c6d37cee3e4adb3509d8585327dac8), the lines with problems seem to be the parts of the code where my async functions return None...
Here it is: ```python import discord from discord.ext import commands import asyncio class BRCog(commands.Cog): async def battle(self, ctx): try: await self.bot.wait_for('reaction_add') except asyncio.TimeoutError: await ctx.send("a") return def setup(bot): bot.add_cog(BRCog(bot)) ```...
I was able to narrow it even more: ```python import asyncio def BRCog(): try: 1+1 except asyncio.TimeoutError: asyncio.read() return ``` [latest.zip](https://github.com/rocky/python-uncompyle6/files/7628240/latest.zip)
Sounds good, I also follow the other repo so I'll be looking into that.
By now, is there a way to remove those lines from the .pyc or ignore the errors? Since all of the other parts of the code are being parsed correctly...
Yeah, it ended up working pretty well, and the download speed is even faster, here you have it: https://github.com/Eleiber/VQGAN-Mirrors/releases/tag/0.0.1 Or direct links: ```python !curl -L -o vqgan_imagenet_f16_1024.yaml -C - 'https://github.com/Eleiber/VQGAN-Mirrors/releases/download/0.0.1/vqgan_imagenet_f16_1024.yaml'...