aboutsummaryrefslogtreecommitdiff
path: root/repos/__init__.py
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-29 20:22:02 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-29 20:22:02 -0600
commit3fbdd8c97383df4a67c75a0cc9405d5349854e9b (patch)
tree6909c9828bd0ebc51feae4ade0636df622554243 /repos/__init__.py
parentfaee70554a0e18f15676ba850d584f2d3e990c97 (diff)
downloadwhere-packaged-3fbdd8c97383df4a67c75a0cc9405d5349854e9b.tar.gz
where-packaged-3fbdd8c97383df4a67c75a0cc9405d5349854e9b.zip
ubuntu
Diffstat (limited to 'repos/__init__.py')
-rw-r--r--repos/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/repos/__init__.py b/repos/__init__.py
index e5e4f98..eb70711 100644
--- a/repos/__init__.py
+++ b/repos/__init__.py
@@ -1,6 +1,6 @@
from typing import Mapping, List
-from . import alpine_linux, arch_linux, crates_io, debian, homebrew
+from . import alpine_linux, arch_linux, crates_io, debian, homebrew, ubuntu
from .base import Repository, slug, Version
__all__ = [
@@ -19,6 +19,7 @@ all_repos: List[Repository] = [
*repos_from(crates_io),
*repos_from(debian),
*repos_from(homebrew),
+ *repos_from(ubuntu),
]
def get_versions(package: str, args: Mapping[str, str]) -> Mapping[str, Version]: