Skip to content

Commit 69cc920

Browse files
MaxNumeriquegithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent 55af6cc commit 69cc920

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

requirements.txt

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

63-
opengeodeweb-microservice==1.*,>=1.0.14

src/opengeodeweb_back/utils_functions.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,11 @@ def save_all_viewables_and_return_info(
198198
geode_object.save,
199199
os.path.join(
200200
data_path,
201-
native_filename
202-
if native_filename is not None
203-
else "native." + geode_object.native_extension(),
201+
(
202+
native_filename
203+
if native_filename is not None
204+
else "native." + geode_object.native_extension()
205+
),
204206
),
205207
),
206208
(geode_object.save_viewable, os.path.join(data_path, "viewable")),

0 commit comments

Comments
 (0)