Remove ;s from Python code

They keep getting copied around too...

Change-Id: I6562dc4d377e5e6d85e9b21cdb3d87b432c77d43
diff --git a/frc971/control_loops/python/control_loop.py b/frc971/control_loops/python/control_loop.py
index d3968a6..53e388b 100644
--- a/frc971/control_loops/python/control_loop.py
+++ b/frc971/control_loops/python/control_loop.py
@@ -8,8 +8,8 @@
     self.formatt = formatt
     self.value = value
     self.formatToType = {}
-    self.formatToType['%f'] = "double";
-    self.formatToType['%d'] = "int";
+    self.formatToType['%f'] = "double"
+    self.formatToType['%d'] = "int"
   def __str__ (self):
     return str("\nstatic constexpr %s %s = "+ self.formatt +";\n") % \
         (self.formatToType[self.formatt], self.name, self.value)