Zhao Yipeng
Zhao Yipeng
these code put wrong values into func_dict ``` 'MSIXY_TI1': MSIXY_TI1, # Needs QAQC 'MSIXY_TI2': MSIXY_TI1, # Needs QAQC 'MSIXY_TI3': MSIXY_TI1, # Needs QAQC ``` and "DBHR" not in it.
The 1098-1117 lines of tool_error.py are as follows ``` init_error = [] for i, (u, l) in enumerate(zip( error.survey.inc_rad[1:], error.survey.inc_rad[:-1] )): init_error.append(0.0) if all(( u > kwargs['header']['XY Static Gyro']['End Inc'],...
The 57-61 lines of tool_error.py are as follows ``` for tool in gyro_continuous: if tool in self.em['codes']: self.gyro_continuous = [] #set gyro_continuous to empty list self.em['codes'].move_to_end(tool) self.gyro_continuous.append(tool) ``` My question...
recently I found an memory leak cased by MEF, when I defined a ViewModel like CodeEditViewModel with NonShared mark, when I close the view, the view model instance will still...