Remove unneeded property

This commit is contained in:
DarkPhoenix
2019-08-04 00:00:53 +03:00
parent e821b2d09c
commit 885a3f1ac9
3 changed files with 10 additions and 11 deletions

View File

@@ -92,11 +92,14 @@ class FitGraph(metaclass=ABCMeta):
def getPlotPoints(self, mainInput, miscInputs, xSpec, ySpec, src, tgt=None):
if tgt is not None and tgt.isFit:
tgtType = 'fit'
tgtItemID = tgt.item.ID
elif tgt is not None and tgt.isProfile:
tgtType = 'profile'
tgtItemID = tgt.item.ID
else:
tgtType = None
cacheKey = (src.itemID, tgtType, getattr(tgt, 'itemID', None))
tgtItemID = None
cacheKey = (src.item.ID, tgtType, tgtItemID)
try:
plotData = self._plotCache[cacheKey][(ySpec, xSpec)]
except KeyError:

View File

@@ -172,13 +172,13 @@ class BaseWrapperList(gui.display.Display):
def containsFitID(self, fitID):
for wrapper in self._wrappers:
if wrapper.isFit and wrapper.itemID == fitID:
if wrapper.isFit and wrapper.item.ID == fitID:
return True
return False
def containsProfileID(self, profileID):
for wrapper in self._wrappers:
if wrapper.isProfile and wrapper.itemID == profileID:
if wrapper.isProfile and wrapper.item.ID == profileID:
return True
return False
@@ -188,11 +188,11 @@ class BaseWrapperList(gui.display.Display):
self.updateView()
def OnFitChanged(self, event):
if set(event.fitIDs).union(w.itemID for w in self._wrappers if w.isFit):
if set(event.fitIDs).union(w.item.ID for w in self._wrappers if w.isFit):
self.updateView()
def OnFitRemoved(self, event):
wrapper = next((w for w in self._wrappers if w.isFit and w.itemID == event.fitID), None)
wrapper = next((w for w in self._wrappers if w.isFit and w.item.ID == event.fitID), None)
if wrapper is not None:
self._wrappers.remove(wrapper)
self.updateView()
@@ -206,7 +206,7 @@ class BaseWrapperList(gui.display.Display):
self.updateView()
def OnProfileRemoved(self, event):
wrapper = next((w for w in self._wrappers if w.isProfile and w.itemID == event.profileID), None)
wrapper = next((w for w in self._wrappers if w.isProfile and w.item.ID == event.profileID), None)
if wrapper is not None:
self._wrappers.remove(wrapper)
self.updateView()
@@ -222,7 +222,7 @@ class BaseWrapperList(gui.display.Display):
self.graphFrame.draw()
def getExistingFitIDs(self):
return [w.itemID for w in self._wrappers if w.isFit]
return [w.item.ID for w in self._wrappers if w.isFit]
def addFitsByIDs(self, fitIDs):
sFit = Fit.getInstance()

View File

@@ -37,10 +37,6 @@ class BaseWrapper:
def isProfile(self):
return isinstance(self.item, TargetProfile)
@property
def itemID(self):
return self.item.ID
@property
def name(self):
if self.isFit: