Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Update dependencies and re-format files
Browse files Browse the repository at this point in the history
  • Loading branch information
ollipa committed Mar 23, 2024
1 parent 0eef435 commit 7cfcce9
Show file tree
Hide file tree
Showing 7 changed files with 575 additions and 695 deletions.
1 change: 1 addition & 0 deletions memrise_audio_uploader/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Memrise audio uploader command-line functionality."""

import getpass
import operator
import signal
Expand Down
1 change: 1 addition & 0 deletions memrise_audio_uploader/lib/memrise/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Python SDK for Memrise API."""

from .client import Course, Level, MemriseClient
from .exceptions import *
1 change: 1 addition & 0 deletions memrise_audio_uploader/lib/memrise/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Memrise SDK client."""

# pylint: disable=protected-access
from __future__ import annotations

Expand Down
1 change: 1 addition & 0 deletions memrise_audio_uploader/lib/memrise/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Memrise SDK models."""

from typing import List, Optional

from pydantic import BaseModel, HttpUrl
Expand Down
1 change: 1 addition & 0 deletions memrise_audio_uploader/lib/synthesizator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Google Text-To-Speech voice synthesizator."""

from typing import List

import pydantic
Expand Down
1,264 changes: 569 additions & 695 deletions poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test main."""

# pylint: disable=missing-docstring
import io
import os
Expand Down

0 comments on commit 7cfcce9

Please sign in to comment.