aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMax-001 <80035972+Max-001@users.noreply.github.com>2024-09-26 16:17:21 +0200
committerMax-001 <80035972+Max-001@users.noreply.github.com>2024-09-26 16:17:21 +0200
commit9e900b072fe40789f7b7d9fb69e0b0326bc7238c (patch)
treee146b1ff277d95658f6555a9af733e4281405bf0 /scripts
parent4865777f7e98ab10c3381a0a36680415bc123113 (diff)
parent6329755a372d90985bda1cd164fae8d91d4a60c6 (diff)
Merge remote-tracking branch 'origin/master' into max/time
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/reqs2tex.py2
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