diff --git a/src/sync_pre_commit_lock/db.py b/src/sync_pre_commit_lock/db.py index 6069fdb..6a1e198 100644 --- a/src/sync_pre_commit_lock/db.py +++ b/src/sync_pre_commit_lock/db.py @@ -16,7 +16,7 @@ class RepoInfo(TypedDict): DEPENDENCY_MAPPING: PackageRepoMapping = { "autopep8": { - "repo": "https://github.com/pre-commit/mirrors-autopep8", + "repo": "https://github.com/hhatto/autopep8", "rev": "v${rev}", }, "bandit": { @@ -88,4 +88,5 @@ class RepoInfo(TypedDict): REPOSITORY_ALIASES: dict[str, tuple[str, ...]] = { "https://github.com/astral-sh/ruff-pre-commit": ("https://github.com/charliermarsh/ruff-pre-commit",), "https://github.com/psf/black-pre-commit-mirror": ("https://github.com/psf/black",), + "https://github.com/hhatto/autopep8": ("https://github.com/pre-commit/mirrors-autopep8",), }