diff options
author | jaseg <git@jaseg.de> | 2022-02-06 13:18:07 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-02-06 13:18:07 +0100 |
commit | 344e6792c47c764c63b6902888b9e7492485f678 (patch) | |
tree | 96e7533a143fafdad28a8922f403410d0b9f2fbf | |
parent | 263617ca754fc7b3fc550a33934fcbcbe5ef8acf (diff) | |
download | gerbonara-344e6792c47c764c63b6902888b9e7492485f678.tar.gz gerbonara-344e6792c47c764c63b6902888b9e7492485f678.tar.bz2 gerbonara-344e6792c47c764c63b6902888b9e7492485f678.zip |
Fix graphics_objects doc strings
-rw-r--r-- | gerbonara/graphic_objects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gerbonara/graphic_objects.py b/gerbonara/graphic_objects.py index c14b411..0995646 100644 --- a/gerbonara/graphic_objects.py +++ b/gerbonara/graphic_objects.py @@ -146,7 +146,7 @@ class GraphicObject: """ Serialize this object into Gerber statements. :param gs: :py:class:`~.rs274x.GraphicsState` object containing current Gerber state (polarity, selected - aperture, interpolation mode etc.). + aperture, interpolation mode etc.). :returns: Iterator yielding one string per line of output Gerber :rtype: Iterator[str] @@ -156,7 +156,7 @@ class GraphicObject: """ Serialize this object into XNC Excellon statements. :param ctx: :py:class:`.ExcellonContext` object containing current Excellon state (selected tool, - interpolation mode etc.). + interpolation mode etc.). :returns: Iterator yielding one string per line of output XNC code :rtype: Iterator[str] |