Remove white space

This commit is contained in:
Zachy 2019-05-17 21:45:21 +01:00
parent e8a0e34aef
commit b0a9a3693c

View File

@ -127,7 +127,6 @@ class Angle(Type):
@staticmethod @staticmethod
def send(value, socket): def send(value, socket):
# Normalize angle between 0 and 255 and convert to int. # Normalize angle between 0 and 255 and convert to int.
UnsignedByte.send(round(256 * ((value % 360) / 360)), socket) UnsignedByte.send(round(256 * ((value % 360) / 360)), socket)