Skip to content

Commit

Permalink
Автоматическое форматирование кода (#22)
Browse files Browse the repository at this point in the history
Автоматическое форматирование кода с помощью black
  • Loading branch information
Bebra777228 authored Sep 5, 2024
2 parents ce74fc1 + e971553 commit e1bdcad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion rvc/modules/model_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def download_file(url, zip_name, progress):
yandex_public_key = f"download?public_key={url}"
yandex_api_url = (
f"https://cloud-api.yandex.net/v1/disk/public/resources/{yandex_public_key}"
)
)
response = requests.get(yandex_api_url)
if response.status_code == 200:
download_link = response.json().get("href")
Expand Down
12 changes: 3 additions & 9 deletions tabs/install/install_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,16 @@ def zip_upload():
"<h3>2. Закиньте файл(-ы) в ZIP-архив и "
"поместите его в область загрузки</h3>"
)
gr.HTML(
"<h3>3. Дождитесь полной загрузки ZIP-архива в интерфейс</h3>"
)
gr.HTML("<h3>3. Дождитесь полной загрузки ZIP-архива в интерфейс</h3>")
with gr.Group():
local_model_name = gr.Text(
label="Имя модели",
info="Дайте вашей загружаемой модели уникальное имя, "
"отличное от других голосовых моделей.",
)
model_upload_button = gr.Button(
"Загрузить модель", variant="primary"
)
model_upload_button = gr.Button("Загрузить модель", variant="primary")

local_upload_output_message = gr.Text(
label="Сообщение вывода", interactive=False
)
local_upload_output_message = gr.Text(label="Сообщение вывода", interactive=False)
model_upload_button.click(
upload_zip_model,
inputs=[zip_file, local_model_name],
Expand Down

0 comments on commit e1bdcad

Please sign in to comment.