Make pylint happy

This commit is contained in:
kramo
2023-06-10 19:34:00 +02:00
parent 5a7ada1c0e
commit de3ef53148
26 changed files with 26 additions and 26 deletions

View File

@@ -2,7 +2,7 @@ from pathlib import Path
from os import PathLike, environ
from functools import wraps
from src import shared
from src import shared # pylint: disable=no-name-in-module
def replaced_by_path(override: PathLike): # Decorator builder

View File

@@ -24,7 +24,7 @@ from shutil import copyfile
from gi.repository import Gio
from PIL import Image, ImageSequence
from src import shared
from src import shared # pylint: disable=no-name-in-module
def resize_cover(cover_path=None, pixbuf=None):

View File

@@ -6,7 +6,7 @@ from typing import TypedDict
import requests
from requests.exceptions import HTTPError
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.utils.rate_limiter import PickHistory, RateLimiter

View File

@@ -5,7 +5,7 @@ import requests
from gi.repository import Gio
from requests.exceptions import HTTPError
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.utils.save_cover import resize_cover, save_cover