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 f011314 commit 522ea5cCopy full SHA for 522ea5c
src/opengeodeweb_viewer/rpc/utils_protocols.py
@@ -2,7 +2,7 @@
2
import os
3
4
# Third party imports
5
-from wslink import register as exportRpc
+from wslink import register as exportRpc # type: ignore
6
7
# Local application imports
8
from opengeodeweb_viewer.utils_functions import get_schemas_dict
src/opengeodeweb_viewer/utils_functions.py
@@ -9,7 +9,7 @@
9
10
11
12
-def get_schemas_dict(path):
+def get_schemas_dict(path: str) -> object:
13
json_files = os.listdir(path)
14
schemas_dict = {}
15
for json_file in json_files:
0 commit comments