Skip to content
Snippets Groups Projects
Commit ff2041ce authored by Andreas Freise's avatar Andreas Freise
Browse files

Merge branch 'master' of gitlab.aei.uni-hannover.de:finesse/pykat

parents 0b8e4018 cc548da1
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
__version__ = "1.0.13"
__version__ = "1.0.14"
# This flag is used to switch on the gui features in pkat at import time
USE_GUI = False
......
......@@ -1068,7 +1068,8 @@ class isolator1(Component):
return rtn
def getQGraphicsItem(self):
raise NotImplemented()
class lens(Component):
......
......@@ -86,7 +86,8 @@ class putter(object):
self.__owner = weakref.ref(newOwner)
def clearPuts(self):
for _ in self.putees.copy():
import copy
for _ in copy.copy(self.putees):
_.put(None)
def register(self, toput):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment