diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-22 21:14:22 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-22 21:14:22 +0200 |
commit | cd00d692240810ba3669a4c749fc9c4aafbfb5d4 (patch) | |
tree | 4765455dbc13f4273ba01c5d6e692fc8b501f033 /scripts/reqs2tex.py | |
parent | 7202e04b143e06d4411869c0cf77a7b9a8cc979b (diff) | |
parent | 46d07c2c9e68597f3f6af76b4f8e837786781029 (diff) |
Merge branch 'loek/research'
Diffstat (limited to 'scripts/reqs2tex.py')
-rwxr-xr-x | scripts/reqs2tex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/reqs2tex.py b/scripts/reqs2tex.py index 31303ff..2bab558 100755 --- a/scripts/reqs2tex.py +++ b/scripts/reqs2tex.py @@ -75,7 +75,7 @@ def convert(reqs): reqs = [item for item in reqs if item[KEY.DELETED] == False] # sort by label - reqs = sorted(reqs, key=lambda req: req[KEY.LABEL]) + reqs = sorted(reqs, key=lambda item: item[KEY.LABEL]) return reqs |