[go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TEST: Add xfailing test for [func-returns-value] #17834

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update check-expressions.test
Co-authored-by: Brian Schubert <brianm.schubert@gmail.com>
  • Loading branch information
harahu and brianschubert authored Sep 27, 2024
commit 7e2a820b89194be6cd0dfc04a8b9124f6645864a
2 changes: 1 addition & 1 deletion test-data/unit/check-expressions.test
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ def deco(f: F) -> F:
def f() -> None:
pass

y1 = f() # E: "f" does not return a value (it only ever returns None) [func-returns-value]
y1 = f() # E: "f" does not return a value (it only ever returns None)

class A:
@staticmethod
Expand Down
Loading