srusskih / SublimeJEDI

awesome Python autocompletion with SublimeText
MIT License
938 stars 109 forks source link

Incorrect separation of function args and docstring in some situations #268

Open hadisfr opened 6 years ago

hadisfr commented 6 years ago

I'm getting the following result: image for the following code:

def __init__(
        self,
        sbtestloc=path.join(path.dirname(__file__), 'max-biclique'),
        input_addr=None,
        output_addr=None,
        output_size_addr=None,
        store_temps=False
    ):
        """ Specify the location of sbtest file while inititlizing
        the class. """

from here.

I should note that autocompletion for function args in function body works fine, so its detecting args somehow.