Rename folder

This commit is contained in:
Choco
2023-02-21 21:12:15 +08:00
parent a21bc04411
commit 5e56b1179f
16 changed files with 5 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ from function import (
get_aliases,
cooldown_check
)
from view import DebugModal, HelpView
from views import DebugModal, HelpView
class Admin(commands.Cog, name="settings"):

View File

@@ -17,7 +17,7 @@ from function import (
)
from addons import getLyrics
from view import SearchView, ListView, LinkView, LyricsView, ChapterView, HelpView
from views import SearchView, ListView, LinkView, LyricsView, ChapterView, HelpView
from validators import url
from random import shuffle

View File

@@ -19,7 +19,7 @@ from function import (
)
from datetime import datetime
from view import PlaylistView, InboxView, HelpView
from views import PlaylistView, InboxView, HelpView
def assign_playlistId(existed: list) -> str:

View File

@@ -130,7 +130,7 @@ async def requests_api(url: str):
async def create_account(ctx: commands.Context):
if not ctx.author:
return
from view import CreateView
from views import CreateView
view = CreateView()
embed=discord.Embed(title="Do you want to create an account on Vocard?", color=embed_color)
embed.description = f"> Plan: `Default` | `5` Playlist | `500` tracks in each playlist."

View File

@@ -26,7 +26,7 @@ import function as func
from math import ceil
from asyncio import sleep
from view import InteractiveController
from views import InteractiveController
from typing import (
Any,
Dict,