mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
13 lines
248 B
Python
13 lines
248 B
Python
class A:
|
|
def foo(self, a, b, c, d):
|
|
if a:
|
|
if b:
|
|
if c:
|
|
if d:
|
|
self.bar()
|
|
c<caret> = 3
|
|
if c:
|
|
a = 2
|
|
|
|
def bar(self):
|
|
pass |