Skip to content

Commit

Permalink
Revert "add test case from astral-sh#13824"
Browse files Browse the repository at this point in the history
This reverts commit 9aa4913.
  • Loading branch information
ntBre committed Nov 26, 2024
1 parent 10b2cac commit 3fac5c5
Showing 1 changed file with 0 additions and 18 deletions.
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
"#,
&[],
);
}
}

0 comments on commit 3fac5c5

Please sign in to comment.