diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-03-30 16:45:03 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-03-30 16:45:03 +0200 |
| commit | 059ccc84e12ce044e06e50d8bb1abff04f47e264 (patch) | |
| tree | 252b7322e8c7a25480036431cafdbda721430c64 /esds/platform.py | |
| parent | 678a001cdc4bcf251aa8c582afb58a4cc0759a36 (diff) | |
Simplify platform file
Diffstat (limited to 'esds/platform.py')
| -rw-r--r-- | esds/platform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esds/platform.py b/esds/platform.py index f878262..341ca13 100644 --- a/esds/platform.py +++ b/esds/platform.py @@ -167,7 +167,7 @@ class YAMLPlatformFile: if "arguments" in nodes: args=nodes["arguments"] for r in args: - for node_id in UnitsParser.node_range(r,self.default["node_count"]): + for node_id in UnitsParser.node_range(str(r),self.default["node_count"]): self.default["arguments"][node_id]=args[r] def parse_general(self): |
