Remove superfluous trailing white space from Python files

This commit is contained in:
Douglas Clowes
2014-05-16 13:01:13 +10:00
parent 4c65f82116
commit 89e4e37f9e
16 changed files with 60 additions and 60 deletions

View File

@@ -24,7 +24,7 @@ class GalilController(object):
def write(self, response):
#print "Device Response: %s" % response
self.response.append(response)
def doIteration(self, now):
#print "DoIteration"
# pass to motors

View File

@@ -25,7 +25,7 @@ class GalilProtocol(Protocol):
print "connectionMade: connection number", self.factory.numProtocols
if self.factory.numProtocols > 2:
print "Too many connections - rejecting"
self.transport.write("Too many connections, try later\r\n")
self.transport.write("Too many connections, try later\r\n")
self.transport.loseConnection()
'''else:
self.transport.write("Welcome connection %d\r\n" % self.factory.numProtocols)'''
@@ -60,7 +60,7 @@ class GalilProtocol(Protocol):
self.response = self.response[:-1]
if len(self.response) > 0 and self.response[-1] != ":":
self.response = self.response + ":"
if len(self.response) == 0:
if len(self.response) == 0:
self.response = self.response + ":"
if len(self.response) > 0:
#print "Protocol Response: %s" % self.response
@@ -68,7 +68,7 @@ class GalilProtocol(Protocol):
self.response = ""
else:
self.pdu = self.pdu + c
class GalilFactory(ServerFactory):
"""Factory object used by the Twisted Infrastructure to create a Protocol
object for incomming connections"""

View File

@@ -29,7 +29,7 @@ class CubicPowderSample:
self.wavelength = 0.0
print "theta = %g, wl = %g, mEv = %g" % (angle, self.wavelength, self.mEv)
def atod(self, the_aspacing, h, k, l):
result = math.sqrt(the_aspacing**2 /(h**2 + k**2 + l**2))
return result