aboutsummaryrefslogtreecommitdiff
path: root/codegen/lib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/lib/utils.py')
-rw-r--r--codegen/lib/utils.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/codegen/lib/utils.py b/codegen/lib/utils.py
index c185c0e5..77a7b2d4 100644
--- a/codegen/lib/utils.py
+++ b/codegen/lib/utils.py
@@ -1,4 +1,5 @@
import re
+import os
# utilities that could be used for things other than codegen
@@ -44,3 +45,7 @@ def group_packets(packets: list[PacketIdentifier]):
packet_groups[key] = []
packet_groups[key].append(packet.packet_id)
return packet_groups
+
+
+def get_dir_location(name: str):
+ return os.path.join(os.path.dirname(__file__), '..', name)