mirror of https://github.com/astral-sh/ruff
37 lines
500 B
Python
37 lines
500 B
Python
class MyClass:
|
|
ImportError = 4
|
|
id: int
|
|
dir = "/"
|
|
|
|
def __init__(self):
|
|
self.float = 5 # is fine
|
|
self.id = 10
|
|
self.dir = "."
|
|
|
|
def int(self):
|
|
pass
|
|
|
|
def str(self):
|
|
pass
|
|
|
|
def method_usage(self) -> str:
|
|
pass
|
|
|
|
def attribute_usage(self) -> id:
|
|
pass
|
|
|
|
|
|
class C:
|
|
@staticmethod
|
|
def property(f):
|
|
return f
|
|
|
|
id = 1
|
|
|
|
@[property][0]
|
|
def f(self, x=[id]):
|
|
return x
|
|
|
|
bin = 2
|
|
foo = [bin]
|