fix linter issue in pycharm
This commit is contained in:
parent
378e4fa822
commit
92575a3e9a
1 changed files with 1 additions and 0 deletions
|
@ -33,6 +33,7 @@ class OpenSCADEngine(Base3DEngine):
|
||||||
for group in self.groups.keys()) + b'\n' +
|
for group in self.groups.keys()) + b'\n' +
|
||||||
b'}\n\n')
|
b'}\n\n')
|
||||||
for group, subgroups in self.groups.items():
|
for group, subgroups in self.groups.items():
|
||||||
|
# noinspection PyStringFormat
|
||||||
result += (b'module ' + group.replace('-', 'minus').encode() + b'() {\n' +
|
result += (b'module ' + group.replace('-', 'minus').encode() + b'() {\n' +
|
||||||
b'\n'.join((b' color([%.2f, %.2f, %.2f]) %s();' %
|
b'\n'.join((b' color([%.2f, %.2f, %.2f]) %s();' %
|
||||||
(*self.colors[subgroup][:3], subgroup.replace('-', 'minus').encode()))
|
(*self.colors[subgroup][:3], subgroup.replace('-', 'minus').encode()))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue