From 3e5819caef56c449606e27ec80f9d563d519a907 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 22 Jul 2018 22:08:56 +0200 Subject: wip. o Changing the data sources to not implicitly starting as a union of all the input data sets. --- src/ee/kicad/pcb/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ee/kicad/pcb') diff --git a/src/ee/kicad/pcb/__init__.py b/src/ee/kicad/pcb/__init__.py index a4ad8ba..a8f96d7 100644 --- a/src/ee/kicad/pcb/__init__.py +++ b/src/ee/kicad/pcb/__init__.py @@ -7,6 +7,7 @@ def auto_str(cls): return str({k: [str(x) for x in v] if isinstance(v, list) else str(v) for k, v in vars(self).items()}) cls.__str__ = __str__ + cls.__name__ = cls.__name__ return cls -- cgit v1.2.3