From: Leandro Lucarella Date: Thu, 20 Oct 2005 05:59:19 +0000 (+0000) Subject: Reemplaza staticmethod viejo con decorator. X-Git-Tag: darcs_import X-Git-Url: https://git.llucax.com/z.facultad/75.59/weathemulator.git/commitdiff_plain/refs/heads/master Reemplaza staticmethod viejo con decorator. --- diff --git a/src/sensor.py b/src/sensor.py index b824e13..a3993ed 100644 --- a/src/sensor.py +++ b/src/sensor.py @@ -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)