mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
14 lines
172 B
Python
14 lines
172 B
Python
def bar():
|
|
... # OK
|
|
|
|
|
|
def foo():
|
|
pass # OK, since we're not in a stub file
|
|
|
|
|
|
class Bar:
|
|
... # OK
|
|
|
|
|
|
class Foo:
|
|
pass # OK, since we're not in a stub file
|