three.MF.V3.Settings.Software
1class Software: 2 3 """ 4 Software settings. 5 """ 6 def __init__(self, updateMajor: bool = None, updateNightly: bool = None): 7 # Enable major version updates which can have breaking API changes. 8 self.updateMajor = updateMajor 9 # Enable nightly release candidate updates. 10 self.updateNightly = updateNightly
class
Software:
2class Software: 3 4 """ 5 Software settings. 6 """ 7 def __init__(self, updateMajor: bool = None, updateNightly: bool = None): 8 # Enable major version updates which can have breaking API changes. 9 self.updateMajor = updateMajor 10 # Enable nightly release candidate updates. 11 self.updateNightly = updateNightly
Software settings.