Skip to content

Commit c1d16af

Browse files
committed
Merge branch 'main' into v0.2.0
2 parents 43ba891 + b1f47f9 commit c1d16af

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ $ audio_convertio <path_to_audios_directory> <input_format> <output_format>
4848
- Python3
4949
- Pytest
5050
- Pydub
51+
- Multiprocessing

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ long_description = file: README.md
88
long_description_content_type = text/markdown
99
license = MIT
1010
platforms = any
11+
download_url = 'https://github.com/AudioConvertio/file-converter/archive/refs/tags/v0.2.0.tar.gz'
1112
classifiers =
1213
Programming Language :: Python :: 3
1314
License :: OSI Approved :: MIT License

src/audio_convertio/classes/audio_converter.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ def convert_files_sequential(self) -> None:
3434
def convert_files_parallel(self) -> None:
3535
"""Iterates over every file in the dir with the input_format and
3636
converts it to the output_format in a parallel way
37-
38-
Args:
39-
output_format (str): the file output format
4037
"""
4138
file_paths = []
4239
for file in os.listdir(self.audios_dir):

0 commit comments

Comments
 (0)