I can’t see Autocomplete when using Type Hint.
class Foo():
def __init__(self):
self.bar = 'a'
foo = Foo()
foo.# I can get Autocomplete
class Foo():
def __init__(self):
self.bar: str = 'a'
foo = Foo()
foo.# There are No Autocomplete
Can I fix it immediately some way? Or Need update from omz?