From 5aa184757e4fb5c2fc141c41aed2fccc0c96ce7e Mon Sep 17 00:00:00 2001 From: jaseg Date: Sat, 6 Nov 2021 22:00:14 +0100 Subject: Make unit test not crash on import --- gerbonara/gerber/panelize/common.py | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 gerbonara/gerber/panelize/common.py (limited to 'gerbonara/gerber/panelize/common.py') diff --git a/gerbonara/gerber/panelize/common.py b/gerbonara/gerber/panelize/common.py deleted file mode 100644 index aa3ba0e..0000000 --- a/gerbonara/gerber/panelize/common.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -# Copyright 2019 Hiroshi Murayama - -import os -from ..common import loads as loads_org -from ..exceptions import ParseError -from ..utils import detect_file_format -from .. import rs274x -from .. import ipc356 - -from . import excellon - -def read(filename, format=None): - with open(filename, 'r') as f: - data = f.read() - return loads(data, filename, format=format) - - -def loads(data, filename=None, format=None): - # if os.path.splitext(filename if filename else '')[1].lower() == '.dxf': - # return dxf.loads(data, filename) - - fmt = detect_file_format(data) - if fmt == 'excellon': - return excellon.loads(data, filename=filename, format=format) - elif fmt == 'ipc_d_356': - return ipc356.loads(data, filename=filename) - else: - raise ParseError('Unable to detect file format') - - -# def rectangle(width, height, left=0, bottom=0, units='metric', draw_mode=None, filename=None): -# return dxf.DxfFile.rectangle( -# width, height, left, bottom, units, draw_mode, filename) -- cgit