From 263617ca754fc7b3fc550a33934fcbcbe5ef8acf Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 6 Feb 2022 01:10:17 +0100 Subject: Add Zuken tests and fix parsing --- gerbonara/cam.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gerbonara/cam.py') diff --git a/gerbonara/cam.py b/gerbonara/cam.py index ef99dfc..7acc108 100644 --- a/gerbonara/cam.py +++ b/gerbonara/cam.py @@ -117,7 +117,8 @@ class FileSettings: return deepcopy(self) def __str__(self): - return f'' + notation = f'notation={self.notation} ' if self.notation != 'absolute' else '' + return f'' @property def is_incremental(self): -- cgit