Structural changes
Some checks failed
Tests / test (3.10) (push) Failing after 1m10s
Tests / test (3.7) (push) Has been cancelled
Tests / test (3.8) (push) Has been cancelled
Tests / test (3.9) (push) Has been cancelled
Tests / test (3.11) (push) Has been cancelled

This commit is contained in:
2023-11-19 22:38:51 +01:00
parent eb9a043c34
commit 9282578788
55 changed files with 144 additions and 150 deletions

View File

View File

@@ -0,0 +1,20 @@
from typing import Dict
# Constant is taken from source of PyRMVtransport:
# https://github.com/cgtobi/PyRMVtransport/blob/development/RMVtransport/const.py
PRODUCTS: Dict[str, int] = {
"ice": 1,
"ic": 2,
"ec": 2,
"r": 4,
"rb": 4,
"re": 4,
"sbahn": 8,
"ubahn": 16,
"tram": 32,
"bus": 64,
"bus2": 128,
"ferry": 256,
"taxi": 512,
"bahn": 1024,
}