run isort

This commit is contained in:
Abel Luck 2024-04-18 11:58:45 +02:00
parent 6add19c288
commit 0c3a7fe7fe
7 changed files with 20 additions and 31 deletions

View file

@ -1,13 +1,11 @@
from scrapy.exporters import BaseItemExporter
from .items import ChannelElementItem
from .exceptions import *
from typing import Any
from io import BytesIO
from typing import Any
from repub import rss
from scrapy.exporters import BaseItemExporter
from .exceptions import *
from .items import ChannelElementItem
class RssExporter(BaseItemExporter):