src/eric7/QScintilla/DocstringGenerator/__init__.py

branch
eric7
changeset 11148
15e30f0c76a8
parent 11090
f5f5f5803935
equal deleted inserted replaced
11147:dee6e106b4d3 11148:15e30f0c76a8
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

eric ide

mercurial