Skip to content

Commit

Permalink
aaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
code-rgb committed Aug 18, 2021
1 parent af59635 commit 65ac255
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xapps2/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async def main():

sem = asyncio.Semaphore(6)

for addon in set(apps_conf["addons"]):
for addon in apps_conf["addons"]:
if func := getattr(apk_dl, addon, None):
file_ext = ".zip" if "nikgapps" in addon else ".apk"
tasks.append(
Expand All @@ -45,7 +45,7 @@ async def main():
)
)

for app in set(apps_conf["custom"]):
for app in apps_conf["custom"]:
apk_name = resolve_name(app["app"])
source = app["source"]
if source in ("fdroid", "playstore"):
Expand Down

0 comments on commit 65ac255

Please sign in to comment.