aboutsummaryrefslogtreecommitdiff
path: root/scripts/reqs2tex.py
diff options
context:
space:
mode:
authorJaro <59013720+JaroWMR@users.noreply.github.com>2024-09-20 12:14:47 +0200
committerGitHub <noreply@github.com>2024-09-20 12:14:47 +0200
commitc6aa1ad7ee44589f261f76aea77963edeed106d4 (patch)
treeb414bb146a59eee6ec735f4a11fe7847793fb149 /scripts/reqs2tex.py
parent77c9588359df6a72097e46074b1ff14f80350285 (diff)
parentf55937c99dfdd08d89d3d7db24780d42b9f4ea75 (diff)
Merge pull request #19 from lonkaars/max/project-plan
Max/project plan
Diffstat (limited to 'scripts/reqs2tex.py')
-rwxr-xr-xscripts/reqs2tex.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/scripts/reqs2tex.py b/scripts/reqs2tex.py
index 1863b0d..31303ff 100755
--- a/scripts/reqs2tex.py
+++ b/scripts/reqs2tex.py
@@ -15,15 +15,17 @@ class KEY(StrEnum):
DESCRIPTION = 'description'
PRIORITY = 'priority'
-class REQ_TYPE(StrEnum):
- SYSTEM = 'system'
- USER = 'user'
-
-class REQ_PRIORITY(StrEnum):
- MUST = 'must'
- SHOULD = 'should'
- COULD = 'could'
- WONT = 'will not'
+REQ_TYPE = [
+ 'system',
+ 'user',
+]
+
+REQ_PRIORITY = [
+ 'must',
+ 'should',
+ 'could',
+ 'will not',
+]
id_counter = 0
def make_id(item):