Skip to content

Commit d13bfe7

Browse files
authored
Update deduplicate.py
fixed whitespace
1 parent 4823a59 commit d13bfe7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/deduplicate.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
from shutil import copyfile
77

88
EURO = [
9-
"b9f4175382a404007e19d3566061e36c",
10-
"9076ddd6ddf0bffc24e6ac71c1353d33",
9+
"b9f4175382a404007e19d3566061e36c",
10+
"9076ddd6ddf0bffc24e6ac71c1353d33",
1111
"1d7fb4e154e7198dfb39d16d9800844d"
1212
]
1313

@@ -50,7 +50,7 @@ def main():
5050
parent = Path(str(parent).replace(".png", "-e.png"))
5151

5252
symlinks = []
53-
53+
5454
# If the file path is NOT same as with the parent folder,
5555
# - Copy the file to the parent folder.
5656
# by-nc/1.0/80x15.png --> by-nc/80x15.png
@@ -61,7 +61,7 @@ def main():
6161
#
6262
# "by-nc/1.0/80x15.png"
6363
# Will be deleted and replaced with symbolic link
64-
# that points to "by-nc/80x15.png"
64+
# that points to "by-nc/80x15.png"
6565
if str(parent) != str(f):
6666
symlinks = [ str(f) ]
6767
if not os.path.exists(str(parent)):
@@ -90,4 +90,4 @@ def main():
9090
except Exception:
9191
print("ERROR (1) Unhandled exception:", file=sys.stderr)
9292
print(traceback.print_exc(), file=sys.stderr)
93-
sys.exit(1)
93+
sys.exit(1)

0 commit comments

Comments
 (0)