diff options
author | Max-001 <80035972+Max-001@users.noreply.github.com> | 2024-09-26 16:17:21 +0200 |
---|---|---|
committer | Max-001 <80035972+Max-001@users.noreply.github.com> | 2024-09-26 16:17:21 +0200 |
commit | 9e900b072fe40789f7b7d9fb69e0b0326bc7238c (patch) | |
tree | e146b1ff277d95658f6555a9af733e4281405bf0 /scripts | |
parent | 4865777f7e98ab10c3381a0a36680415bc123113 (diff) | |
parent | 6329755a372d90985bda1cd164fae8d91d4a60c6 (diff) |
Merge remote-tracking branch 'origin/master' into max/time
Diffstat (limited to 'scripts')
-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 |