File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/opengeodeweb_viewer/rpc Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11from typing import TypedDict
22
3- class ImportProjectParams (TypedDict ):
3+ class ImportProject (TypedDict ):
44 pass
Original file line number Diff line number Diff line change 99from opengeodeweb_viewer .vtk_protocol import VtkView
1010from opengeodeweb_microservice .database import connection
1111from opengeodeweb_viewer .utils_functions import validate_schema
12- from opengeodeweb_viewer .rpc .schemas .import_project import ImportProjectParams
12+ from opengeodeweb_viewer .rpc .schemas .import_project import ImportProject
1313
1414
1515class VtkUtilsView (VtkView ):
@@ -30,7 +30,7 @@ def kill(self) -> None:
3030 os ._exit (0 )
3131
3232 @exportRpc (utils_prefix + utils_schemas_dict ["import_project" ]["rpc" ])
33- def importProject (self , rpc_params : ImportProjectParams ) -> None :
33+ def importProject (self , rpc_params : ImportProject ) -> None :
3434 print (
3535 f"{ self .utils_prefix + self .utils_schemas_dict ['import_project' ]['rpc' ]} " ,
3636 flush = True ,
You can’t perform that action at this time.
0 commit comments