Skip to content

Commit

Permalink
isort executed
Browse files Browse the repository at this point in the history
  • Loading branch information
exxamalte committed Jun 7, 2021
1 parent 501a93c commit 8ec5d3a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions aio_georss_gdacs/feed_entry.py
@@ -1,12 +1,12 @@
"""GDACS feed entry."""
from collections.abc import Mapping
from datetime import datetime
from typing import Optional, Tuple, Union, List, Type
from typing import List, Optional, Tuple, Type, Union

import dateparser
from aio_georss_client.feed_entry import FeedEntry
from aio_georss_client.xml_parser.feed_item import FeedItem
from aio_georss_client.xml_parser.geometry import Geometry, Polygon, Point
from aio_georss_client.xml_parser.geometry import Geometry, Point, Polygon

from .consts import (
ATTRIBUTION,
Expand All @@ -15,6 +15,7 @@
XML_TAG_GDACS_ALERT_LEVEL,
XML_TAG_GDACS_COUNTRY,
XML_TAG_GDACS_DURATION_IN_WEEK,
XML_TAG_GDACS_EVENT_ID,
XML_TAG_GDACS_EVENT_NAME,
XML_TAG_GDACS_EVENT_TYPE,
XML_TAG_GDACS_FROM_DATE,
Expand All @@ -27,7 +28,6 @@
XML_TAG_GDACS_VERSION,
XML_TAG_GDACS_VULNERABILITY,
XML_TEXT,
XML_TAG_GDACS_EVENT_ID,
)


Expand Down
2 changes: 1 addition & 1 deletion tests/test_feed.py
Expand Up @@ -2,10 +2,10 @@
import datetime

import aiohttp
import pytest
import pytz
from aio_georss_client.consts import UPDATE_OK

import pytest
from aio_georss_gdacs.consts import ATTRIBUTION
from aio_georss_gdacs.feed import GdacsFeed
from tests.utils import load_fixture
Expand Down
1 change: 1 addition & 0 deletions tests/test_feed_entry.py
@@ -1,5 +1,6 @@
"""Test for the GDACS feed entry."""
import pytest

from aio_georss_gdacs.feed_entry import GdacsFeedEntry


Expand Down
2 changes: 1 addition & 1 deletion tests/test_feed_manager.py
Expand Up @@ -2,9 +2,9 @@
import datetime

import aiohttp
import pytest
import pytz

import pytest
from aio_georss_gdacs.feed_manager import GdacsFeedManager
from tests.utils import load_fixture

Expand Down

0 comments on commit 8ec5d3a

Please sign in to comment.