Files
Petrandintellij-monorepo-bot 51ad67e9f7 PY-54512 Handle line breaks when extracting a method
GitOrigin-RevId: 95f6c067e613172913f3bbdc60eafb8623e32457
2025-09-18 15:42:03 +00:00

10 lines
142 B
Python

def foo(num):
if (
bar(num)
):
return 1
def bar(num_new):
return (num_new >= 0
and num_new <= 9)