mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-30 22:01:47 +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!")
|