Last analyzed f4ccc05 3 months ago
Default analysis branch is
Currently analyzing run
Function contains unused argument PYL-W0613
Anti-pattern
3 months ago โ€” 6 months old
 24
 25
 26# Extract with 7z
 27async def _extract_with_7z_helper(protected, path, archive_path, password=None): 28    if password:
 29        command = f'7z x -o{path} -p"{password}" {archive_path} -y'
 30    else:
Unused argument 'client'
520
521
522@Client.on_message(filters.command("admincmd") & filters.user(Config.BOT_OWNER))
523async def getadmin_cmds(client, message):524    await message.reply(
525        """
526Here's all the commands that only the owner (you) can use :
Unused argument 'client'
495
496
497@Client.on_message(filters.command("commands"))
498async def getall_cmds(client, message):499    await message.reply(
500        """
501Here is the list of the commands you can use (only in private btw) :
Unused argument 'client'
489@Client.on_message(
490    filters.private & filters.command("dbexport") & filters.user(Config.BOT_OWNER)
491)
492async def export_db(client, message):493    await message.reply("๐Ÿšง WIP ๐Ÿšง")
494    # Will use https://www.mongodb.com/docs/database-tools/mongoexport/ on command to export as CSV
495
Unused argument 'user_id'
189cloud_db = unzipper_db["cloud_db"]
190
191
192async def get_cloud(user_id):193    return "https://api.bayfiles.com/upload"
194
195