Skip to content

Commit

Permalink
pre-commit run --all
Browse files Browse the repository at this point in the history
  • Loading branch information
carlthome committed Apr 19, 2024
1 parent afe7db0 commit d58d787
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions audioscrape/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""YouTube audio scraper package."""

from .__main__ import download
from .version import version

Expand Down
1 change: 1 addition & 0 deletions audioscrape/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Download audio."""

import argparse
import logging
import sys
Expand Down
1 change: 1 addition & 0 deletions audioscrape/classify.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Machine listening help functionality to easily categorize downloaded audio."""

import logging
from mediapipe.tasks.python import BaseOptions, audio
from mediapipe.tasks.python.components.containers import AudioData
Expand Down
1 change: 1 addition & 0 deletions audioscrape/soundcloud.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Search SoundCloud playlists for audio."""

import json
import logging
import os
Expand Down
1 change: 1 addition & 0 deletions audioscrape/youtube.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Rip audio from YouTube videos."""

import logging
import re
from urllib.parse import urlencode
Expand Down
1 change: 1 addition & 0 deletions tests/test_audioscrape.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Testing module for the audio scraper."""

import audioscrape


Expand Down

0 comments on commit d58d787

Please sign in to comment.