Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit e63128a

Browse files
committed
Fix linters
1 parent eadaeff commit e63128a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cli_ui/tests/test_cli_ui.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,9 @@ def test_color_never(smart_tty: SmartTTY) -> None:
360360
def test_message_for_exception(
361361
message_recorder: MessageRecorder, dumb_tty: DumbTTY
362362
) -> None:
363-
def foo():
363+
def foo() -> None:
364364
x = 1 / 0
365+
print(x)
365366

366367
try:
367368
foo()

0 commit comments

Comments
 (0)