]> git.llucax.com Git - z.facultad/75.59/weathemulator.git/commitdiff
Reemplaza staticmethod viejo con decorator. master darcs_import
authorLeandro Lucarella <luca@llucax.hn.org>
Thu, 20 Oct 2005 05:59:19 +0000 (05:59 +0000)
committerLeandro Lucarella <luca@llucax.hn.org>
Thu, 20 Oct 2005 05:59:19 +0000 (05:59 +0000)
src/sensor.py

index b824e135969988e00b2929bebd7a816ed770e098..a3993ede3a2577c91ec3cb064b97acbd5a787802 100644 (file)
@@ -103,6 +103,7 @@ class SensorDireccionViento(Sensor):
         self.mu = self.rndAngle(self.mu, self.sigma)
         return SensorDireccionViento.ROSA[int(round(self.mu))]
 
+    @staticmethod
     def direccionToString(direccion):
         if direccion == 0:
             return "Norte"
@@ -121,7 +122,6 @@ class SensorDireccionViento(Sensor):
         if direccion == 7:
             return "Noroeste"
         raise NameError
-    direccionToString = staticmethod(direccionToString)
 
     def __str__(self):
         return SensorDireccionViento.direccionToString(self.valorActual)