Fixing more relative import statements

refactor
Philipp Klaus 2015-02-18 15:54:36 +01:00
rodzic 7ace94b023
commit e6fa61c82b
2 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -30,9 +30,9 @@ def read(filename):
CncFile object representing the file, either GerberFile or
ExcellonFile. Returns None if file is not an Excellon or Gerber file.
"""
import rs274x
import excellon
from utils import detect_file_format
from . import rs274x
from . import excellon
from .utils import detect_file_format
fmt = detect_file_format(filename)
if fmt == 'rs274x':
return rs274x.read(filename)

Wyświetl plik

@ -24,5 +24,5 @@ SVG is the only supported format.
"""
from svgwrite_backend import GerberSvgContext
from cairo_backend import GerberCairoContext
from .svgwrite_backend import GerberSvgContext
from .cairo_backend import GerberCairoContext