We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8f3f20 commit 551da4dCopy full SHA for 551da4d
1 file changed
tests/get_external_apt_dependencies.py
@@ -11,8 +11,10 @@
11
distributions = sys.argv[1:]
12
if not distributions:
13
distributions = os.listdir(STUBS_PATH)
14
- dependencies = set(itertools.chain.from_iterable(
15
- read_metadata(distribution).stubtest_settings.apt_dependencies for distribution in distributions
16
- ))
+ dependencies = set(
+ itertools.chain.from_iterable(
+ read_metadata(distribution).stubtest_settings.apt_dependencies for distribution in distributions
17
+ )
18
19
for dependency in sorted(dependencies):
20
print(dependency)
0 commit comments