diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2018-07-22 22:08:56 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2018-07-22 22:08:56 +0200 |
commit | 3e5819caef56c449606e27ec80f9d563d519a907 (patch) | |
tree | 943dae6b38832f227f2d6391ef55c324856eec2a /src/ee/kicad/pcb | |
parent | 73fe63ceb6d10e5bed0664100de8709843661d8d (diff) | |
download | ee-python-3e5819caef56c449606e27ec80f9d563d519a907.tar.gz ee-python-3e5819caef56c449606e27ec80f9d563d519a907.tar.bz2 ee-python-3e5819caef56c449606e27ec80f9d563d519a907.tar.xz ee-python-3e5819caef56c449606e27ec80f9d563d519a907.zip |
wip.
o Changing the data sources to not implicitly starting as a union of all
the input data sets.
Diffstat (limited to 'src/ee/kicad/pcb')
-rw-r--r-- | src/ee/kicad/pcb/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |