7 lines
88 B
Python
7 lines
88 B
Python
from enum import Enum
|
|
|
|
class SweepSpacing(Enum):
|
|
LIN = 1
|
|
LOG = 2
|
|
STEP = 3
|