summaryrefslogtreecommitdiff
path: root/gerbonara/gerber/excellon.py
diff options
context:
space:
mode:
Diffstat (limited to 'gerbonara/gerber/excellon.py')
-rwxr-xr-xgerbonara/gerber/excellon.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/gerbonara/gerber/excellon.py b/gerbonara/gerber/excellon.py
index 0129867..e827c3f 100755
--- a/gerbonara/gerber/excellon.py
+++ b/gerbonara/gerber/excellon.py
@@ -26,7 +26,7 @@ from collections import Counter
from .cam import CamFile, FileSettings
from .graphic_objects import Flash, Line, Arc
from .apertures import ExcellonTool
-from .utils import Inch, MM
+from .utils import Inch, MM, InterpMode
def parse(data, settings=None):
return ExcellonFile.parse(data, settings=settings)
@@ -208,11 +208,6 @@ class ProgramState(Enum):
ROUTING = 2
FINISHED = 2
-class InterpMode(Enum):
- LINEAR = 0
- CIRCULAR_CW = 1
- CIRCULAR_CCW = 2
-
class ExcellonParser(object):
def __init__(self, settings=None):