|
@@ -1,4 +1,8 @@
|
|
|
-from .core import APSourceMetadataFetcher, VersionsFetcher
|
|
|
|
|
|
|
+from .core import (
|
|
|
|
|
+ APSourceMetadataFetcher,
|
|
|
|
|
+ VersionsFetcher,
|
|
|
|
|
+ RemoteInfo,
|
|
|
|
|
+)
|
|
|
from .exceptions import (
|
|
from .exceptions import (
|
|
|
MetadataManagerException,
|
|
MetadataManagerException,
|
|
|
TooManyInstancesError
|
|
TooManyInstancesError
|
|
@@ -8,5 +12,6 @@ __all__ = [
|
|
|
"APSourceMetadataFetcher",
|
|
"APSourceMetadataFetcher",
|
|
|
"VersionsFetcher",
|
|
"VersionsFetcher",
|
|
|
"MetadataManagerException",
|
|
"MetadataManagerException",
|
|
|
- "TooManyInstancesError"
|
|
|
|
|
|
|
+ "TooManyInstancesError",
|
|
|
|
|
+ "RemoteInfo",
|
|
|
]
|
|
]
|