Skip to content

Commit ef16f6f

Browse files
authored
trailing whitespace
1 parent 9a39784 commit ef16f6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

commands/system/update-scripts-command.template.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env python3
22

33
# How to use this script?
4-
# It's a template which needs further setup. Duplicate the file,
5-
# remove `.template.` from the filename and set `path_to_scripts` and
4+
# It's a template which needs further setup. Duplicate the file,
5+
# remove `.template.` from the filename and set `path_to_scripts` and
66
# ignored_files vars.
77

88
# Required parameters:
@@ -86,7 +86,7 @@ def find(key, dictionary):
8686

8787
with open(f"{repo_path}/commands/extensions.json") as json_file:
8888
data = json.load(json_file)
89-
script_files = [RepoScriptFile(updated_at=datetime.fromisoformat(file.get("updatedAt")), filename=file.get("filename"))
89+
script_files = [RepoScriptFile(updated_at=datetime.fromisoformat(file.get("updatedAt")), filename=file.get("filename"))
9090
for file in flatten(find("scriptCommands", data))]
9191
if base_date is not None:
9292
script_files = [f for f in script_files if f.updated_at > base_date]

0 commit comments

Comments
 (0)