kopia lustrzana https://github.com/vilemduha/blendercam
Property format, version update
Changed the formatting of Properties (e.g. bpy.props.StringProperty) throughout: Before: ``` use_position_definitions: bpy.props.BoolProperty(name="Use position definitions", description="Define own positions for op start, " "toolchange, ending position", default=False) ``` After: ``` use_position_definitions: BoolProperty( name="Use position definitions", description="Define own positions for op start, " "toolchange, ending position", default=False, ) ``` Added trailing commas to retain formatting if another autoformatter (e.g.: black) is implemented. Removed bpy.props. prefix from Properties that still had it, and added explicit imports when required in ui_panels module.pull/269/head
rodzic
50682fb8c0
commit
4fea2d25fb