src/eric7/JediInterface/JediClient.py

branch
eric7
changeset 10683
779cda568acb
parent 10439
21c28b0f9e41
child 10792
33a80657e896
equal deleted inserted replaced
10682:47be220abdaf 10683:779cda568acb
104 @type dict 104 @type dict
105 """ 105 """
106 projectPath = params["ProjectPath"] 106 projectPath = params["ProjectPath"]
107 self.__project = jedi.Project(projectPath) 107 self.__project = jedi.Project(projectPath)
108 108
109 def __closeProject(self, params): # noqa: U100 109 def __closeProject(self, _params):
110 """ 110 """
111 Private method to save a jedi project's data. 111 Private method to save a jedi project's data.
112 112
113 @param params dictionary containing the method parameters 113 @param _params dictionary containing the method parameters (unused)
114 @type dict 114 @type dict
115 """ 115 """
116 if self.__project is not None: 116 if self.__project is not None:
117 self.__project.save() 117 self.__project.save()
118 118

eric ide

mercurial