Hi, I'm just getting started with Pythonista and I have a basic question on autocompletion:
If I do the following, either in the console or an editor window:
obj = MyObject()
Then when I type "obj." it will offer to autocomplete with the members of MyObject. But if I do this:
def foo(obj: MyObject):
... Here, "obj." does not autocomplete.
I'm used to using Pycharm which will autocomplete if you give it type hints like in the declaration above, so I'm just wondering if I'm missing something simple to get Pythonista to do the same thing?