Sorry, but until I figure out or somebody tells me how I am reluctant to start a new post.
This looks as sending an e-mail which should be no brainer, but I keep getting “, not delivered …”
I suspect my OS and e-mail software with connection to stupid AI is the problem.
So here is my very next and complicated question - it basically is about “:”
symbol usage .
would somebody kindly read and explain in English language what all these lines of code doing?
I am trying to replicate TDRWindow (class )
I know how to add “new python package” , name it DTWWindow and copy / modify the existing TDRWindow
code to it.
I am having issues "adding DTW " symbol and accessing it.
Basically - what does this do
“tdr”: TDRWindow(self), as far as “tdr” symbol goes ?
and
what
self.windows = { …}
does ?
self.windows = {
“about”: AboutWindow(self),
“analysis”: AnalysisWindow(self),
“calibration”: CalibrationWindow(self),
“device_settings”: DeviceSettingsWindow(self),
“file”: FilesWindow(self),
“sweep_settings”: SweepSettingsWindow(self),
“setup”: DisplaySettingsWindow(self),
“tdr”: TDRWindow(self),
add ??
“DTW”: TDRWindow(self),
}
: