mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00
9 lines
147 B
Python
9 lines
147 B
Python
from pprint import pprint
|
|
|
|
pprint("Hello, world!") # T203
|
|
|
|
import pprint
|
|
|
|
pprint.pprint("Hello, world!") # T203
|
|
|
|
pprint.pformat("Hello, world!")
|