Fixed plot constant names

Too much cut & paste
This commit is contained in:
Salvador E. Tropea 2020-10-19 13:36:02 -03:00
parent df83e6f93d
commit 8a87a677e2
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# Copyright (c) 2020 Instituto Nacional de Tecnología Industrial
# License: GPL-3.0
# Project: KiBot (formerly KiPlot)
from pcbnew import (PLOT_FORMAT_HPGL) # , SKETCH, FILLED Bug: https://gitlab.com/kicad/code/kicad/-/issues/6070
from pcbnew import (PLOT_FORMAT_DXF) # , SKETCH, FILLED Bug: https://gitlab.com/kicad/code/kicad/-/issues/6070
from .out_any_layer import AnyLayer
from .drill_marks import DrillMarks
from .macros import macros, document, output_class # noqa: F401

View File

@ -5,7 +5,7 @@
# License: GPL-3.0
# Project: KiBot (formerly KiPlot)
# Adapted from: https://github.com/johnbeard/kiplot
from pcbnew import (PLOT_FORMAT_HPGL, FromMM, ToMM) # , SKETCH, FILLED Bug: https://gitlab.com/kicad/code/kicad/-/issues/6070
from pcbnew import (PLOT_FORMAT_POST, FromMM, ToMM) # , SKETCH, FILLED Bug: https://gitlab.com/kicad/code/kicad/-/issues/6070
from .misc import AUTO_SCALE
from .out_any_layer import AnyLayer
from .drill_marks import DrillMarks