diff --git a/src/unearth/__init__.py b/src/unearth/__init__.py index 4b2b3ae..bfa30cf 100644 --- a/src/unearth/__init__.py +++ b/src/unearth/__init__.py @@ -13,15 +13,15 @@ from unearth.vcs import vcs_support __all__ = [ + "BestMatch", + "HashMismatchError", "Link", - "Source", "Package", + "PackageFinder", + "Source", + "TargetPython", "URLError", - "BestMatch", "UnpackError", - "vcs_support", - "TargetPython", - "PackageFinder", "VCSBackendError", - "HashMismatchError", + "vcs_support", ] diff --git a/src/unearth/vcs/__init__.py b/src/unearth/vcs/__init__.py index bd4a322..4febaf9 100644 --- a/src/unearth/vcs/__init__.py +++ b/src/unearth/vcs/__init__.py @@ -4,4 +4,4 @@ from unearth.vcs.hg import Mercurial from unearth.vcs.svn import Subversion -__all__ = ["vcs_support", "Git", "Mercurial", "Bazaar", "Subversion"] +__all__ = ["Bazaar", "Git", "Mercurial", "Subversion", "vcs_support"]