From 0684d1ff908d425a4959f99cd7b834b09cd161f8 Mon Sep 17 00:00:00 2001 From: DeepSOIC Date: Sun, 20 Dec 2015 03:11:28 +0300 Subject: [PATCH] ParaSeries (and possibly others): fix errors on save/load --- lattice2BaseFeature.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lattice2BaseFeature.py b/lattice2BaseFeature.py index 5d44268..337fe57 100644 --- a/lattice2BaseFeature.py +++ b/lattice2BaseFeature.py @@ -214,6 +214,11 @@ class LatticeFeature(): #--DeepSOIC pass + def __getstate__(self): + return None + + def __setstate__(self,state): + return None class ViewProviderLatticeFeature: "A View Provider for base lattice object"