Skip to content
Merged
Prev Previous commit
Next Next commit
Revert "add test case from #13824"
This reverts commit 9aa4913.
  • Loading branch information
ntBre committed Nov 26, 2024
commit 3fac5c5442378f01e79208bae079f09ed1b6065f
18 changes: 0 additions & 18 deletions crates/ruff_linter/src/rules/pyflakes/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4223,22 +4223,4 @@ lambda: fu
&[],
);
}

#[test]
fn no_type_check_function() {
flakes(
r#"
from typing import no_type_check

@no_type_check
def f821(arg: "A") -> "R":
pass

@no_type_check
def f722(arg: "this isn't python") -> "this isn't python either":
pass
"#,
&[],
);
}
}