7702:f8b97639deb5 | 7703:1f800f8295ea |
---|---|
5 | 5 |
6 """ | 6 """ |
7 Module implementing the snapshot mode enumeration. | 7 Module implementing the snapshot mode enumeration. |
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 | 12 |
17 class SnapshotModes(Enum): | 13 class SnapshotModes(Enum): |
18 """ | 14 """ |
19 Class implementing the snapshot modes. | 15 Class implementing the snapshot modes. |