tools/validator.py [692:699]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  def get_allowed_file_paths(self, documentation_dir: str) -> Sequence[str]:
    """Returns the absolute paths for PUBLISHER/(models/)NAME/VERSION.md."""
    return [
        os.path.join(documentation_dir, self._publisher, self._model_name,
                     f"{self._model_version}.md"),
        os.path.join(documentation_dir, self._publisher, _MODELS_DIR,
                     self._model_name, f"{self._model_version}.md")
    ]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tools/validator.py [726:733]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  def get_allowed_file_paths(self, documentation_dir: str) -> Sequence[str]:
    """Returns the absolute paths for PUBLISHER/(models/)NAME/VERSION.md."""
    return [
        os.path.join(documentation_dir, self._publisher, self._model_name,
                     f"{self._model_version}.md"),
        os.path.join(documentation_dir, self._publisher, _MODELS_DIR,
                     self._model_name, f"{self._model_version}.md")
    ]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



