Skip to content

Commit 522ea5c

Browse files
mypy
1 parent f011314 commit 522ea5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/opengeodeweb_viewer/rpc/utils_protocols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33

44
# Third party imports
5-
from wslink import register as exportRpc
5+
from wslink import register as exportRpc # type: ignore
66

77
# Local application imports
88
from opengeodeweb_viewer.utils_functions import get_schemas_dict

src/opengeodeweb_viewer/utils_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Local application imports
1010

1111

12-
def get_schemas_dict(path):
12+
def get_schemas_dict(path: str) -> object:
1313
json_files = os.listdir(path)
1414
schemas_dict = {}
1515
for json_file in json_files:

0 commit comments

Comments
 (0)