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