summaryrefslogtreecommitdiff
path: root/gerber/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'gerber/common.py')
-rw-r--r--gerber/common.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/gerber/common.py b/gerber/common.py
index 04b6423..cf137dd 100644
--- a/gerber/common.py
+++ b/gerber/common.py
@@ -22,7 +22,6 @@ from .exceptions import ParseError
from .utils import detect_file_format
-
def read(filename):
""" Read a gerber or excellon file and return a representative object.
@@ -73,5 +72,3 @@ def loads(data):
return excellon.loads(data)
else:
raise TypeError('Unable to detect file format')
-
-