Skip to content

Commit

Permalink
Stop linter complaining 1
Browse files Browse the repository at this point in the history
first check
  • Loading branch information
Audionut committed Aug 29, 2024
1 parent ff1d09d commit 7ab744a
Showing 1 changed file with 1 addition and 90 deletions.
91 changes: 1 addition & 90 deletions cogs/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,10 @@
from glob import glob
import argparse



class Commands(commands.Cog):
def __init__(self, bot):
self.bot = bot


@commands.Cog.listener()
async def on_guild_join(self, guild):
"""
Expand Down Expand Up @@ -87,7 +84,6 @@ async def upload(self, ctx, path, *args, message_id=0, search_args=tuple()):
else:
await ctx.send("Invalid Path")


@commands.command()
async def args(self, ctx):
f"""
Expand All @@ -103,56 +99,6 @@ async def args(self, ctx):
await ctx.send(f"```{help[1991:]}```")
else:
await ctx.send(help.format_help())
# await ctx.send("""
# ```Optional arguments:

# -s, --screens [SCREENS]
# Number of screenshots
# -c, --category [{movie,tv,fanres}]
# Category
# -t, --type [{disc,remux,encode,webdl,web-dl,webrip,hdtv}]
# Type
# -res, --resolution
# [{2160p,1080p,1080i,720p,576p,576i,480p,480i,8640p,4320p,other}]
# Resolution
# -tmdb, --tmdb [TMDB]
# TMDb ID
# -g, --tag [TAG]
# Group Tag
# -serv, --service [SERVICE]
# Streaming Service
# -edition, --edition [EDITION]
# Edition
# -d, --desc [DESC]
# Custom Description (string)
# -nfo, --nfo
# Use .nfo in directory for description
# -k, --keywords [KEYWORDS]
# Add comma seperated keywords e.g. 'keyword, keyword2, etc'
# -reg, --region [REGION]
# Region for discs
# -a, --anon Upload anonymously
# -st, --stream Stream Optimized Upload
# -debug, --debug Debug Mode```""")


# @commands.group(invoke_without_command=True)
# async def foo(self, ctx):
# """
# check out my subcommands!
# """
# await ctx.send('check out my subcommands!')

# @foo.command(aliases=['an_alias'])
# async def bar(self, ctx):
# """
# I have an alias!, I also belong to command 'foo'
# """
# await ctx.send('foo bar!')





@commands.command()
async def edit(self, ctx, uuid=None, *args):
Expand Down Expand Up @@ -187,11 +133,6 @@ async def edit(self, ctx, uuid=None, *args):
meta['name_notag'], meta['name'], meta['clean_name'], meta['potential_missing'] = await prep.get_name(meta)
await self.send_embed_and_upload(ctx, meta)






@commands.group(invoke_without_command=True)
async def search(self, ctx, *, args=None):
"""
Expand Down Expand Up @@ -250,8 +191,6 @@ def check(reaction, user):
else:
await self.upload(ctx, files_total[0], search_args=tuple(args.split(" ")), message_id=message.id)



@search.command()
async def dir(self, ctx, *, args=None):
"""
Expand Down Expand Up @@ -311,14 +250,7 @@ def check(reaction, user):
await self.upload(ctx, path=folders_total[0], search_args=tuple(args.split(" ")), message_id=message.id)
# await ctx.send(folders_total)
return









async def send_embed_and_upload(self,ctx,meta):
prep = Prep(screens=meta['screens'], img_host=meta['imghost'], config=config)
meta['name_notag'], meta['name'], meta['clean_name'], meta['potential_missing'] = await prep.get_name(meta)
Expand Down Expand Up @@ -368,7 +300,6 @@ async def send_embed_and_upload(self,ctx,meta):
else:
meta['client'] = 'none'


#Format for embed
if meta['tag'] == "":
tag = ""
Expand Down Expand Up @@ -464,17 +395,6 @@ def check(reaction, user):
await msg.clear_reactions()
await msg.edit(embed=cancel_embed)
return
# except ManualException:
# msg = await ctx.fetch_message(meta['embed_msg_id'])
# await msg.clear_reactions()
# archive_url = await prep.package(meta)
# if archive_url == False:
# archive_fail_embed = discord.Embed(title="Unable to upload prep files", description=f"The files can be found at `tmp/{meta['title']}.tar`", color=0xff0000)
# await msg.edit(embed=archive_fail_embed)
# else:
# archive_embed = discord.Embed(title="Files can be found at:",description=f"{archive_url} or `tmp/{meta['title']}.tar`", color=0x00ff40)
# await msg.edit(embed=archive_embed)
# return
else:

#Check which are selected and upload to them
Expand All @@ -494,9 +414,6 @@ def check(reaction, user):
await msg.edit(embed=upload_embed)
await msg.clear_reactions()




client = Clients(config=config)
if "MANUAL" in tracker_list:
for manual_tracker in tracker_list:
Expand Down Expand Up @@ -591,8 +508,6 @@ def check(reaction, user):
await msg.edit(embed=upload_embed)
return None



async def dupe_embed(self, dupes, meta, emojis, channel):
if not dupes:
print("No dupes found")
Expand Down Expand Up @@ -651,10 +566,6 @@ async def get_missing(self, meta):
def setup(bot):
bot.add_cog(Commands(bot))





class CancelException(Exception):
pass

Expand Down

0 comments on commit 7ab744a

Please sign in to comment.