1# Add the argument ".self" before your function's name --> line 12
2
3class ThisClass:
4 def __init__(self):
5 self.a_random_arg = a_random_arg
6
7 def FirstDef(self):
8 [Here my function]
9
10 def SecondDef(self):
11 if self.FirsDef:
12 [following]