We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ac2218 + 5021d28 commit 18be4afCopy full SHA for 18be4af
src/opengeodeweb_back/geode_functions.py
@@ -115,7 +115,6 @@ def list_input_extensions(
115
Function that returns a list of all input extensions
116
Args:
117
keys -- Tells the function if we want the geode_objects that have a crs
118
- geode_object -- The name of the geode_object
119
Returns:
120
An ordered list of input file extensions
121
"""
@@ -124,8 +123,9 @@ def list_input_extensions(
124
123
for geode_object, value in objects_list().items():
125
if keys:
126
for key in keys:
127
- if key in geode_object:
128
- if type(geode_object[key]) == bool and geode_object[key] == True:
+ if key in value.keys():
+ print(geode_object)
+ if type(value[key]) == bool and value[key] == True:
129
continue
130
else:
131
0 commit comments