Baracchino-Della-Scuola / Bot

Line too long FLK-E501
Style
Minor
5 months ago2 years old
line too long (94 > 88 characters)
 8
 9while True:
10    print("NFT")
11    url = f"https://api.opensea.io/api/v1/assets?order_direction=desc&offset={offset}&limit=1"12    response = requests.request("GET", url)
13
14    responselist = response.text.split(",")
line too long (136 > 88 characters)
 1import requests, time
 2
 3webhook_url = "https://discord.com/api/webhooks/944193369444335636/5aHibosUOR_ZyD845oIga4wi21SCvBumUtPIrDvV1IhpMqA3vadyQgKZYi0WMZO0XGAV" 4sleep_time = 0.25
 5
 6
line too long (93 > 88 characters)
 67        else:
 68            await ctx.send("File not found. Try with a different file")
 69            await self.staff_chat.send(
 70                f"{ctx.author.mention} has attempted to download a file that does not exist." 71            )
 72            return
 73        await self.staff_chat.send(
line too long (95 > 88 characters)
330        """
331        if not channel and not ctx.author.voice:
332            raise VoiceError(
333                "You are neither connected to a voice channel nor specified a channel to join."334            )
335
336        destination = channel or ctx.author.voice.channel
line too long (126 > 88 characters)
 81        cur = await self.bot.connection.cursor()
 82        print(reason)
 83        await cur.execute(
 84            f"INSERT into warns (user, reason, moderator) VALUES ('{user.id}', '{' '.join(list(reason))}', '{ctx.author.id}')" 85        )
 86        await ctx.send("I warned " + str(user))
 87