Skip to content

Commit

Permalink
Fix flake8.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roel committed Aug 22, 2023
1 parent 495b526 commit dcc7a0d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pydov/util/caching.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
from owslib.etree import etree

from pydov.util.dovutil import build_dov_url, get_dov_xml
from pydov.util.errors import RemoteFetchError, WfsStaleWarning, XmlStaleWarning
from pydov.util.errors import (RemoteFetchError, WfsStaleWarning,
XmlStaleWarning)
from pydov.util.hooks import HookRunner
from pydov.util.owsutil import wfs_get_feature

Expand Down Expand Up @@ -355,7 +356,8 @@ def _save(self, datatype, key, content):
raise NotImplementedError('This should be implemented in a subclass.')

def get_wfs(self, url, get_feature_request, session=None):
datatype, key = self._get_wfs_type_key_from_url(url, get_feature_request)
datatype, key = self._get_wfs_type_key_from_url(
url, get_feature_request)

if self._is_valid(datatype, key):
try:
Expand Down

0 comments on commit dcc7a0d

Please sign in to comment.