Skip to content

Commit 65ac255

Browse files
committed
aaaa
1 parent af59635 commit 65ac255

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xapps2/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async def main():
3434

3535
sem = asyncio.Semaphore(6)
3636

37-
for addon in set(apps_conf["addons"]):
37+
for addon in apps_conf["addons"]:
3838
if func := getattr(apk_dl, addon, None):
3939
file_ext = ".zip" if "nikgapps" in addon else ".apk"
4040
tasks.append(
@@ -45,7 +45,7 @@ async def main():
4545
)
4646
)
4747

48-
for app in set(apps_conf["custom"]):
48+
for app in apps_conf["custom"]:
4949
apk_name = resolve_name(app["app"])
5050
source = app["source"]
5151
if source in ("fdroid", "playstore"):

0 commit comments

Comments
 (0)