mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
8 lines
127 B
Python
8 lines
127 B
Python
class MyClass:
|
|
ImportError = 4
|
|
|
|
def __init__(self):
|
|
self.float = 5 # is fine
|
|
|
|
def str(self):
|
|
pass
|