(args)
| 10 | return portfolio.total_cost |
| 11 | |
| 12 | def main(args): |
| 13 | if len(args) != 2: |
| 14 | raise SystemExit('Usage: %s portfoliofile' % args[0]) |
| 15 | filename = args[1] |
| 16 | print('Total cost:', portfolio_cost(filename)) |
| 17 | |
| 18 | if __name__ == '__main__': |
| 19 | import sys |
no test coverage detected