(self)
| 8 | self.config_file = config_file |
| 9 | |
| 10 | def parse_from_env(self) -> Dict[int, str]: |
| 11 | self.tokens = dict( |
| 12 | (c + 1, t) |
| 13 | for c, (_, t) in enumerate( |
| 14 | filter( |
| 15 | lambda n: n[0].startswith("MULTI_TOKEN"), sorted(environ.items()) |
| 16 | ) |
| 17 | ) |
| 18 | ) |
| 19 | return self.tokens |
no outgoing calls
no test coverage detected