Skip to content

Commit 9d45525

Browse files
BotellaAgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent 03d121c commit 9d45525

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,4 @@ werkzeug==3.1.2
6060
# flask
6161
# flask-cors
6262

63+
opengeodeweb-microservice==1.*,>=1.0.12

src/opengeodeweb_back/utils_functions.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from concurrent.futures import ThreadPoolExecutor
88
from typing import Any
99

10-
1110
# Third party imports
1211
import flask
1312
import fastjsonschema # type: ignore
@@ -191,7 +190,7 @@ def save_all_viewables_and_return_info(
191190
data_path: str,
192191
) -> dict[str, str | list[str]]:
193192
with ThreadPoolExecutor() as executor:
194-
(native_files, viewable_path, light_path) = executor.map(
193+
native_files, viewable_path, light_path = executor.map(
195194
lambda args: args[0](args[1]),
196195
[
197196
(

tests/test_geode_functions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from opengeodeweb_back.geode_objects import geode_objects
1010
from opengeodeweb_back.geode_objects.types import GeodeObjectType_values
1111

12-
1312
data_folder = os.path.join(os.path.dirname(__file__), "data")
1413

1514

0 commit comments

Comments
 (0)