def startDump(): """Launch the dumping process: parse the card and print the results.""" card = card_interface.getCard() if not card is None: content = structure_parser.parseCard(card) display.prettyPrint(content)
def startDump(): card = card_interface.getCard() if card: content = structure_parser.parseCard(card) display.prettyPrint(content)