(self)
| 330 | self.count = self.count + 1 |
| 331 | |
| 332 | def exit(self): |
| 333 | # Done! |
| 334 | print "\n", "Album created!" |
| 335 | print "Press <enter> to exit..." |
| 336 | if(raw_input()): |
| 337 | exit |
| 338 | |
| 339 | if __name__ == '__main__': |
| 340 |
no outgoing calls
no test coverage detected