161 @param state new vcs state |
161 @param state new vcs state |
162 @type str |
162 @type str |
163 """ |
163 """ |
164 self.__vcsClean = state == " " |
164 self.__vcsClean = state == " " |
165 |
165 |
166 def __ledClicked(self, pos): # noqa: U100 |
166 def __ledClicked(self, _pos): |
167 """ |
167 """ |
168 Private slot to react upon clicks on the LED. |
168 Private slot to react upon clicks on the LED. |
169 |
169 |
170 @param pos position of the click |
170 @param _pos position of the click (unused) |
171 @type QPoint |
171 @type QPoint |
172 """ |
172 """ |
173 if self.__on: |
173 if self.__on: |
174 vcs = self.project.getVcs() |
174 vcs = self.project.getVcs() |
175 if vcs: |
175 if vcs: |