core: cleanup/sort imports according to ruff check --select I

This commit is contained in:
Dima Gerasimov 2024-08-16 13:25:19 +03:00 committed by karlicoss
parent 7023088d13
commit 7bfce72b7c
45 changed files with 235 additions and 170 deletions

View file

@ -3,9 +3,9 @@ Decorator to gracefully handle importing a data source, or warning
and yielding nothing (or a default) when its not available
"""
from functools import wraps
from typing import Any, Iterator, TypeVar, Callable, Optional, Iterable
import warnings
from functools import wraps
from typing import Any, Callable, Iterable, Iterator, Optional, TypeVar
from .warnings import medium