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 |