1
0
Fork 1
mirror of https://github.com/bookwyrm-social/bookwyrm.git synced 2025-04-24 03:04:10 +00:00

Minor formatting fixes

This commit is contained in:
Mouse Reeve 2025-03-25 16:54:31 -07:00 committed by GitHub
parent 0bc1a6e0b2
commit c5c5ddea08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,11 +4,10 @@ from abc import ABC, abstractmethod
from typing import Optional, TypedDict, Any, Callable, Union, Iterator
from urllib.parse import quote_plus
# pylint: disable-next=deprecated-module
from PIL import Image, UnidentifiedImageError
import logging
import re
import asyncio
from PIL import Image, UnidentifiedImageError
import requests
from requests.exceptions import RequestException
import aiohttp
@ -379,7 +378,6 @@ def get_image(
return None, None
class Mapping:
"""associate a local database field with a field in an external dataset"""