7702:f8b97639deb5 | 7703:1f800f8295ea |
---|---|
5 | 5 |
6 """ | 6 """ |
7 Module implementing the Undo stack for the hex edit widget. | 7 Module implementing the Undo stack for the hex edit widget. |
8 """ | 8 """ |
9 | 9 |
10 | 10 from enum import Enum |
11 try: | |
12 from enum import Enum | |
13 except ImportError: | |
14 from ThirdParty.enum import Enum | |
15 | 11 |
16 from PyQt5.QtWidgets import QUndoStack, QUndoCommand | 12 from PyQt5.QtWidgets import QUndoStack, QUndoCommand |
17 | 13 |
18 | 14 |
19 class HexEditCommand(Enum): | 15 class HexEditCommand(Enum): |