mirror of https://github.com/astral-sh/ruff
Remove erroneous test dir
This commit is contained in:
parent
9d4a4478f7
commit
68a0e6dc19
27
test/F823.py
27
test/F823.py
|
|
@ -1,27 +0,0 @@
|
|||
my_dict = {}
|
||||
my_var = 0
|
||||
|
||||
|
||||
def foo():
|
||||
my_var += 1
|
||||
|
||||
|
||||
def bar():
|
||||
global my_var
|
||||
my_var += 1
|
||||
|
||||
|
||||
def baz():
|
||||
global my_var
|
||||
global my_dict
|
||||
my_dict[my_var] += 1
|
||||
|
||||
|
||||
def dec(x):
|
||||
return x
|
||||
|
||||
|
||||
@dec
|
||||
def f():
|
||||
dec = 1
|
||||
return dec
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
def f() -> int:
|
||||
return 1
|
||||
|
||||
|
||||
class Foo:
|
||||
return 2
|
||||
|
||||
|
||||
return 3
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
def f() -> int:
|
||||
return 1
|
||||
|
||||
|
||||
class Foo:
|
||||
return 2
|
||||
|
||||
|
||||
return 3
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
def f() -> int:
|
||||
return 1
|
||||
|
||||
|
||||
class Foo:
|
||||
return 2
|
||||
|
||||
|
||||
return 3
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
[tool.ruff]
|
||||
line-length = 88
|
||||
extend-exclude = ["./directory/*"]
|
||||
Loading…
Reference in New Issue