Skip to content

Commit

Permalink
Fix a typo in configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
oakkitten committed May 21, 2022
1 parent 3eaad68 commit fa709f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anki_wallpaper/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def from_data(cls, data):
result.errors.append(f"Error opening wallpaper folder '{folder}': {e}")
else:
files_to_validate_via_opening = \
files if len(files) < 10 else files[:5] + files[5:]
files if len(files) < 10 else files[:5] + files[-5:]

for file in sorted(files):
if '"' in str(file):
Expand Down

0 comments on commit fa709f1

Please sign in to comment.