Skip to content

Commit e9855a5

Browse files
authored
Merge pull request #718 from tad1/master
fix device headers generation script
2 parents be82e7f + b67c5e5 commit e9855a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/nbl/device/DeviceGen.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
class ContinueEx(Exception):
88
pass
99

10-
ExposeStatus = IntFlag("Expose", ["DEFAULT", "REQUIRE", "DISABLE", "MOVE_TO_LIMIT"])
11-
CompareStatus = IntFlag("Compare", ["DEFAULT", "DISABLE", "SKIP", "REVERSE"])
10+
ExposeStatus = IntFlag("ExposeStatus", ["DEFAULT", "REQUIRE", "DISABLE", "MOVE_TO_LIMIT"])
11+
CompareStatus = IntFlag("CompareStatus", ["DEFAULT", "DISABLE", "SKIP", "REVERSE"])
1212

1313
MovedLimits = []
1414

@@ -638,4 +638,4 @@ def writeHeader(file_path, header_builder, **params):
638638
file.write(line + '\n')
639639
except Exception as ex:
640640
print(f"Error while writing to file: {file_path}\nException: {ex}")
641-
raise ex
641+
raise ex

0 commit comments

Comments
 (0)