From 43aedb2e2dc8c8b94f349315a7103b790b461b7e Mon Sep 17 00:00:00 2001 From: Ajay Arasanipalai Date: Wed, 31 Jan 2024 23:03:32 -0600 Subject: [PATCH] style: tempfix newline after docstring for black and reorder-python-imports incompatibility --- audiotools/core/playback.py | 3 +-- audiotools/metrics/__init__.py | 3 +-- audiotools/ml/experiment.py | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/audiotools/core/playback.py b/audiotools/core/playback.py index e6fffdce..5d0f21aa 100644 --- a/audiotools/core/playback.py +++ b/audiotools/core/playback.py @@ -2,8 +2,7 @@ These are utilities that allow one to embed an AudioSignal as a playable object in a Jupyter notebook, or to play audio from the terminal, etc. -""" - +""" # fmt: skip import base64 import io import random diff --git a/audiotools/metrics/__init__.py b/audiotools/metrics/__init__.py index a927a46b..c9c8d2df 100644 --- a/audiotools/metrics/__init__.py +++ b/audiotools/metrics/__init__.py @@ -1,7 +1,6 @@ """ Functions for comparing AudioSignal objects to one another. -""" - +""" # fmt: skip from . import distance from . import quality from . import spectral diff --git a/audiotools/ml/experiment.py b/audiotools/ml/experiment.py index f44e6f71..62833d0f 100644 --- a/audiotools/ml/experiment.py +++ b/audiotools/ml/experiment.py @@ -1,8 +1,7 @@ """ Useful class for Experiment tracking, and ensuring code is saved alongside files. -""" - +""" # fmt: skip import datetime import os import shlex