(self)
| 79 | return self._dict |
| 80 | |
| 81 | def parse(self) -> Iterator[Tuple[str, Optional[str]]]: |
| 82 | with self._get_stream() as stream: |
| 83 | for mapping in with_warn_for_invalid_lines(parse_stream(stream)): |
| 84 | if mapping.key is not None: |
| 85 | yield mapping.key, mapping.value |
| 86 | |
| 87 | def set_as_environment_variables(self) -> bool: |
| 88 | """ |
no test coverage detected