Skip to content

Commit 1adbea1

Browse files
author
salabi
committed
param utils and tests restructure
1 parent 25766a3 commit 1adbea1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

digital_land/collect.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from .adapter.file import FileAdapter
2020
from .plugins.sparql import get as sparql_get
21-
# from .plugins.wfs import get as wfs_get
21+
from .plugins.wfs import get as wfs_get
2222
from .plugins.arcgis import get as arcgis_get
2323

2424
logger = logging.getLogger(__name__)
@@ -192,8 +192,8 @@ def fetch(
192192
log, content = self.get(url, log)
193193
elif plugin == "arcgis":
194194
log, content = arcgis_get(self, url, log, parameters=parameters)
195-
# elif plugin == "wfs":
196-
# log, content = wfs_get(self, url, log,)
195+
elif plugin == "wfs":
196+
log, content = wfs_get(self, url, log,)
197197
elif plugin == "sparql":
198198
log, content = sparql_get(self, url, log)
199199
else:

0 commit comments

Comments
 (0)