Initializes Output class.
(self)
| 11 | """ |
| 12 | |
| 13 | def __init__(self): |
| 14 | """Initializes Output class. |
| 15 | """ |
| 16 | |
| 17 | self.logger = structlog.get_logger() |
| 18 | self.dispatcher = { |
| 19 | 'cli': self.to_cli, |
| 20 | 'csv': self.to_csv, |
| 21 | 'json': self.to_json |
| 22 | } |
| 23 | |
| 24 | |
| 25 | def to_cli(self, results, market_pair): |
nothing calls this directly
no outgoing calls
no test coverage detected