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
{{ message }}
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
fromtypingimportoverloadclassFoo:
"""asdf"""@overload# this comment causes the errordeffoo(self): # error: D102
...
@overloaddeffoo(self, value: int): # no error because the docstring is on the implementation
...
deffoo(self, value: int|None=None):
"""asdf"""
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: