Skip to content

Commit 0ac4f45

Browse files
committed
enums: Adjust AllowAllConductors to match DSS C-API 0.14.1; fix SkipDSSClass, which is now IncludeDSSClass
1 parent 87ed8bb commit 0ac4f45

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dss_python_backend/enums.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -344,9 +344,9 @@ class DSSJSONFlags(IntFlag):
344344
Exclude disabled elements (only valid when exporting a collection)
345345
"""
346346

347-
SkipDSSClass = 0x00000040
347+
IncludeDSSClass = 0x00000040
348348
"""
349-
Do not add the "DSSClass" property to the output
349+
Add "DSSClass" property to the output objects
350350
"""
351351

352352
LowercaseKeys = 0x00000080
@@ -609,7 +609,7 @@ class SetterFlags(IntFlag):
609609
- Null pointers for strings (in this case, use a `"\\0"` string for empty strings)
610610
"""
611611

612-
AllowAllConductors = 0x80000000
612+
AllowAllConductors = 0x40000000
613613
"""
614614
Used internally for the "Wires" property ("Conductors").
615615
This was left public in case someone tries to implement some internal aspects in

0 commit comments

Comments
 (0)