Skip to content

Commit 5917542

Browse files
committed
Missing whitespace after keyword
1 parent 953f921 commit 5917542

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/srgssr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1321,7 +1321,7 @@ def read_searches(self, filename):
13211321
with open(file_path, 'r') as f:
13221322
json_file = json.load(f)
13231323
try:
1324-
return[entry['search'] for entry in json_file]
1324+
return [entry['search'] for entry in json_file]
13251325
except KeyError:
13261326
self.log(f'Unexpected file structure for {filename}.')
13271327
return []

0 commit comments

Comments
 (0)