PyCharm typehinting

196 Views Asked by At

I have this code:

pile = get_pile()
pile.spawn(func1)
pile.spawn(func2)
(var1, var2) = list(pile)
# :type MyClass
var1.do_something()

So, variable var1, which is returned by func1() is an instance of class MyClass. How do I tell my PyCharm that? I've tried with the upper comment and also several other approaches, but it always says that the type is unknown and autocomplete doesn't work.

2

There are 2 best solutions below

0
On

You can find the type hints syntax in the online documentation.

type hint

0
On

I've had luck doing type hinting like this:

""" :type: MyClass """