mirror of
https://github.com/beetbox/beets.git
synced 2026-01-20 15:14:13 +01:00
fix: sort imports alphabetically
This commit is contained in:
parent
5ea41b3fbb
commit
29e1c283eb
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue