mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00
13 lines
125 B
Python
13 lines
125 B
Python
def f():
|
|
name: str
|
|
age: int
|
|
|
|
|
|
class A:
|
|
name: str
|
|
age: int
|
|
|
|
|
|
class B:
|
|
name: str = "Bob"
|
|
age: int = 18
|