comparison: eric6/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py
eric6/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsChecker.py
- changeset 8218
- 7c09585bd960
- parent 8207
- d359172d11be
- child 8222
- 5994b80b8760
equal
deleted
inserted
replaced
233 Constructor |
233 Constructor |
234 |
234 |
235 @param sourceLines lines of source code |
235 @param sourceLines lines of source code |
236 @type list of str |
236 @type list of str |
237 """ |
237 """ |
238 super(FunctionVisitor, self).__init__() |
238 super().__init__() |
239 |
239 |
240 self.__sourceLines = sourceLines |
240 self.__sourceLines = sourceLines |
241 |
241 |
242 self.issues = [] |
242 self.issues = [] |
243 |
243 |