Source code for bobleesj.utils.io.gh

from pathlib import Path


[docs] def find_git_repos(root_dir): return [p.parent for p in Path(root_dir).rglob(".git")]