From 29e1c283eba0f3c2e8a196fd30eefc675a7f1a46 Mon Sep 17 00:00:00 2001 From: m_igashi <@M_Igashi> Date: Sat, 17 Jan 2026 02:15:43 +0100 Subject: [PATCH] fix: sort imports alphabetically --- beetsplug/replaygain.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index 25472b6e6..5a5cb96e8 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -20,6 +20,7 @@ import enum import math import os import queue +import shutil import signal import subprocess import sys @@ -27,9 +28,8 @@ import warnings from abc import ABC, abstractmethod from dataclasses import dataclass from multiprocessing.pool import ThreadPool -from threading import Event, Thread -import shutil from pathlib import Path +from threading import Event, Thread from typing import TYPE_CHECKING, Any, ClassVar, Literal, TypeVar from beets import ui