(cls, fitID)
| 234 | |
| 235 | @classmethod |
| 236 | def getCommandProcessor(cls, fitID): |
| 237 | if fitID not in cls.processors: |
| 238 | cls.processors[fitID] = wx.CommandProcessor(maxCommands=100) |
| 239 | return cls.processors[fitID] |
| 240 | |
| 241 | @staticmethod |
| 242 | def copyFit(fitID): |
no outgoing calls
no test coverage detected