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.
1 parent 6ba9a4e commit 373e0eeCopy full SHA for 373e0ee
src/opengeodeweb_viewer/utils_functions.py
@@ -15,9 +15,9 @@
15
type RpcParamsWithList = dict[str, JsonPrimitive | list[str]]
16
17
18
-def get_schemas_dict(path: str) -> object:
+def get_schemas_dict(path: str) -> dict[str, dict[str, JsonValue]]:
19
json_files = os.listdir(path)
20
- schemas_dict = {}
+ schemas_dict: dict[str, dict[str, JsonValue]] = {}
21
for json_file in json_files:
22
last_point = json_file.rfind(".")
23
filename = json_file[: -len(json_file) + last_point]
0 commit comments