diff options
Diffstat (limited to 'gerbonara/cam.py')
-rw-r--r-- | gerbonara/cam.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gerbonara/cam.py b/gerbonara/cam.py index e6bb651..14c1e8b 100644 --- a/gerbonara/cam.py +++ b/gerbonara/cam.py @@ -60,6 +60,9 @@ class FileSettings: #: If you want to export the macros with their original formulaic expressions (which is completely fine by the #: Gerber standard, btw), set this parameter to ``False`` before exporting. calculate_out_all_aperture_macros: bool = True + #: Internal field used to communicate if only decimal coordinates were found inside an Excellon file, or if it + #: contained at least some coordinates in fixed-width notation. + _file_has_fixed_width_coordinates: bool = False # input validation def __setattr__(self, name, value): |