23 "Cython", |
23 "Cython", |
24 "Python", |
24 "Python", |
25 "Python3", |
25 "Python3", |
26 "MicroPython", |
26 "MicroPython", |
27 ): |
27 ): |
28 from .PyDocstringGenerator import ( # __IGNORE_WARNING_I101__ |
28 from .PyDocstringGenerator import ( # __IGNORE_WARNING_I-101__ |
29 PyDocstringGenerator, |
29 PyDocstringGenerator, |
30 ) |
30 ) |
31 |
31 |
32 return PyDocstringGenerator(editor) |
32 return PyDocstringGenerator(editor) |
33 else: |
33 else: |
34 from .BaseDocstringGenerator import ( # __IGNORE_WARNING_I101__ |
34 from .BaseDocstringGenerator import ( # __IGNORE_WARNING_I-101__ |
35 BaseDocstringGenerator, |
35 BaseDocstringGenerator, |
36 ) |
36 ) |
37 |
37 |
38 return BaseDocstringGenerator(editor) |
38 return BaseDocstringGenerator(editor) |
39 |
39 |