Remove trailing semicolon

This commit is contained in:
Rotzbua 2022-12-28 18:14:57 +01:00 committed by Florian Festi
parent 5f9f704869
commit 03879258e8
3 changed files with 6 additions and 6 deletions

View File

@ -1938,7 +1938,7 @@ class LidEdge(FingerJointEdge):
description = "Edge for slide on lid (back)"
def __call__(self, length, bedBolts=None, bedBoltSettings=None, **kw):
hole_width = self.settings.hole_width;
hole_width = self.settings.hole_width
if hole_width > 0:
super().__call__((length - hole_width) / 2)
GroovedEdgeBase.groove_arc(self, hole_width)
@ -1951,7 +1951,7 @@ class LidHoleEdge(FingerHoleEdge):
description = "Edge for slide on lid (box back)"
def __call__(self, length, bedBolts=None, bedBoltSettings=None, **kw):
hole_width = self.settings.hole_width;
hole_width = self.settings.hole_width
if hole_width > 0:
super().__call__((length - hole_width) / 2)
self.edge(hole_width)

View File

@ -95,7 +95,7 @@ class OrganPipe(Boxes): # Change class name!
air_density = 1.2
air_speed = self.getAirSpeed(self.windpressure, air_density)
i = self.intonation;
i = self.intonation
radius = self.getRadius(self.pitch, self.octave, i) * 1000
cross_section = pi * radius**2
circumference = pi * radius * 2.0
@ -109,9 +109,9 @@ class OrganPipe(Boxes): # Change class name!
sound_power = (0.001 * pi * (air_density / speed_of_sound) * f**2
* (1.7 * (jet_thickness * speed_of_sound * f * mouth_area * mouth_area**.5)**.5)**2)
air_consumption_rate = air_speed * mouth_width * jet_thickness * 1E6;
air_consumption_rate = air_speed * mouth_width * jet_thickness * 1E6
wavelength = speed_of_sound / f * 1000;
wavelength = speed_of_sound / f * 1000
if self.stopped:
theoretical_resonator_length = wavelength / 4.0

View File

@ -75,7 +75,7 @@ With lid:
self.moveTo(0, dr)
for l in (lx, ly, lx, ly):
self.edge(l);
self.edge(l)
self.corner(90, r)
def cb(self, nr):