vk_group.groups.isMember
groups.isMember
print(0)
self.command = self.command(self)
print(1)
self.pay_bill()
print(2)
try:
print(3)
self.command.run()
print(3.1)
except:
print(3.2)
print(''.join(traceback.format_exception(*sys.exc_info())), file=sys.stderr)
self.prepare()
print(4)
0
1
2
3
print(0)
self.command = self.command(self)
print(1)
self.pay_bill()
print(2)
try:
print(3)
self.command.run()
print(3.1)
except:
print(3.2)
print(''.join(traceback.format_exception(*sys.exc_info())), file=sys.stderr)
self.prepare()
print(4)
0
1
2
3