mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
Delete targets condition in createCodeFragment and filter duplicates GitOrigin-RevId: 474f3634a06c9cff25bafc94e1651d4fe61fb2a0
6 lines
82 B
Python
6 lines
82 B
Python
def f(n):
|
|
return n * 2 if bar(n) else n + 1
|
|
|
|
|
|
def bar(n_new):
|
|
return n_new |