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
Running stubgen --search-path . test produces out/test.pyi with the following contents:
# Stubs for test (Python 3.7)## NOTE: This dynamically typed stub was automatically generated by stubgen.classFoo:
defbar(self): ...
defbaz(): ...
I would expect the output to be:
# Stubs for test (Python 3.7)## NOTE: This dynamically typed stub was automatically generated by stubgen.classFoo:
asyncdefbar(self): ...
asyncdefbaz(): ...
The text was updated successfully, but these errors were encountered:
mypy version: 0.641
Given the following file (named
test.py
):Running
stubgen --search-path . test
producesout/test.pyi
with the following contents:I would expect the output to be:
The text was updated successfully, but these errors were encountered: