mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-09 23:34:45 +08:00
15 lines
208 B
Python
15 lines
208 B
Python
"""
|
|
Issues with the parser not the completion engine should be here.
|
|
"""
|
|
|
|
class C():
|
|
""" issue jedi-vim#288 """
|
|
def indent_issues(
|
|
self,
|
|
):
|
|
return 1
|
|
|
|
|
|
#? int()
|
|
C().indent_issues()
|