(self, path, **kwargs)
| 440 | return infos |
| 441 | |
| 442 | def info(self, path, **kwargs): |
| 443 | key = self._get_key_from_relative(path) |
| 444 | ignore_subrepos = kwargs.get("ignore_subrepos", True) |
| 445 | return self._info(key, path, ignore_subrepos=ignore_subrepos) |
| 446 | |
| 447 | def _info( # noqa: C901 |
| 448 | self, key, path, ignore_subrepos=True, check_ignored=True |