6 lines
88 B
Python
6 lines
88 B
Python
from enum import Enum
|
|
|
|
class SweepTriggerSlope(Enum):
|
|
POSITIVE = 1
|
|
NEGATIVE = 2
|