Skip to content

Commit

Permalink
reformatted
Browse files Browse the repository at this point in the history
  • Loading branch information
arron1993 committed Mar 21, 2022
1 parent 14251d7 commit 13aef20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def copy(moddir):
keys = glob.glob(os.path.join(moddir, '**/*.bikey'))
keys = glob.glob(os.path.join(moddir, "**/*.bikey"))
if len(keys) > 0:
for key in keys:
if not os.path.isdir(key):
Expand All @@ -13,6 +13,6 @@ def copy(moddir):
print("Missing keys:", moddir)


if __name__ == '__main__':
if __name__ == "__main__":
for moddir in glob.glob("/arma3/steamapps/workshop/content/107410/*"):
copy(moddir)
copy(moddir)

0 comments on commit 13aef20

Please sign in to comment.