You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hm. I tried this again, and I still think it doesn't work the way it should. IMO if ignore_fully_annotated_function is set to true, the following program should be accepted:
class A:
def do_something(self) -> int:
return "asd"
a = A()
b = a.do_something()
But currently, it's rejected. If I add the annotation self: A, it is accepted, because do_something is now recognized as fully annotated.
No description provided.
The text was updated successfully, but these errors were encountered: