We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6591f73 commit a8e22a1Copy full SHA for a8e22a1
docs/source/core_engine/01-flags.md
@@ -90,12 +90,12 @@ Validating if a flag is enabled is possible with the bitwise operator AND: `&`.
90
91
```python
92
>>> from diffsync.enum import DiffSyncFlags
93
->>> flags = 0
+>>> flags = DiffSyncFlags.NONE
94
>>> bool(flags & DiffSyncFlags.CONTINUE_ON_FAILURE)
95
->>> False
+False
96
>>> flags |= DiffSyncFlags.CONTINUE_ON_FAILURE
97
98
->>> True
+True
99
```
100
101
### Disable a flag (bitwise NOT)
0 commit comments