diff --git a/.gitignore b/.gitignore index 8fc3088..f4336f6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.idea *.dfpwm *.32vid dictionary.dic diff --git a/README.md b/README.md index 222ad8d..e17a7e3 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ And [Sanic Builtin values]. ## Docker Compose ```yml -version: "2.0" +--- services: youcube: image: ghcr.io/cc-youcube/youcube:latest @@ -63,6 +63,7 @@ services: hostname: youcube ports: - 5000:5000 +... ``` [spotify application]: https://developer.spotify.com/dashboard/applications diff --git a/src/compile.py b/src/compile.py index 0ef0a7b..0ba1822 100644 --- a/src/compile.py +++ b/src/compile.py @@ -27,4 +27,3 @@ def main() -> None: if __name__ == "__main__": main() - diff --git a/src/youcube/__main__.py b/src/youcube/__main__.py index 384758c..ae5c730 100644 --- a/src/youcube/__main__.py +++ b/src/youcube/__main__.py @@ -10,4 +10,3 @@ if __name__ == "__main__": main() - diff --git a/src/youcube/yc_colours.py b/src/youcube/yc_colours.py index c375ed5..1fb2b1f 100644 --- a/src/youcube/yc_colours.py +++ b/src/youcube/yc_colours.py @@ -36,4 +36,3 @@ class Foreground: RESET = "\033[m" - diff --git a/src/youcube/yc_download.py b/src/youcube/yc_download.py index 147d633..a2e0206 100644 --- a/src/youcube/yc_download.py +++ b/src/youcube/yc_download.py @@ -293,4 +293,3 @@ def my_hook(info): files.append(get_video_name(media_id, width, height)) return out, files - diff --git a/src/youcube/yc_logging.py b/src/youcube/yc_logging.py index 770fcaa..961d880 100644 --- a/src/youcube/yc_logging.py +++ b/src/youcube/yc_logging.py @@ -101,4 +101,3 @@ def setup_logging() -> Logger: logger.addHandler(logging_handler) return logger - diff --git a/src/youcube/yc_magic.py b/src/youcube/yc_magic.py index 32a51ee..6d1678f 100644 --- a/src/youcube/yc_magic.py +++ b/src/youcube/yc_magic.py @@ -130,4 +130,3 @@ def live_output(): # pylint: disable=unused-argument - diff --git a/src/youcube/yc_spotify.py b/src/youcube/yc_spotify.py index 2a76328..581df03 100644 --- a/src/youcube/yc_spotify.py +++ b/src/youcube/yc_spotify.py @@ -168,4 +168,3 @@ def main() -> None: if __name__ == "__main__": main() - diff --git a/src/youcube/yc_utils.py b/src/youcube/yc_utils.py index 4689341..fa9cd8f 100644 --- a/src/youcube/yc_utils.py +++ b/src/youcube/yc_utils.py @@ -108,4 +108,3 @@ def is_video_already_downloaded(media_id: str, width: int, height: int) -> bool: def is_save(string: str) -> bool: """Returns True if the given string does not contain special characters""" return bool(allowed_characters.match(string)) - diff --git a/src/youcube/youcube.py b/src/youcube/youcube.py index 1c1e031..60198d3 100644 --- a/src/youcube/youcube.py +++ b/src/youcube/youcube.py @@ -83,7 +83,8 @@ playAudio This accepts a list of audio samples as amplitudes between -128 and 127. -These are stored in an internal buffer and played back at 48kHz. If this buffer is full, this function will return false. +These are stored in an internal buffer and played back at 48kHz. +If this buffer is full, this function will return false. """ """Related CC-Tweaked issues @@ -469,4 +470,3 @@ def main() -> None: if __name__ == "__main__": main() -