(self, file_path: Path)
| 112 | } |
| 113 | |
| 114 | def _read_env_file(self, file_path: Path) -> dict[str, str | None]: |
| 115 | file_vars = dotenv_values(file_path, encoding=self.env_file_encoding) |
| 116 | return self._parse_env_vars(file_vars) |
| 117 | |
| 118 | def _read_env_files(self) -> dict[str, str | None]: |
| 119 | env_files = self.env_file |
no test coverage detected