lda: do not print attenuation value in simulation

This commit is contained in:
Sebastien Bourdeauducq 2015-02-27 00:16:56 -07:00
parent 61f33a9a04
commit 3e46a36a4d
1 changed files with 1 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class Ldasim:
return self._attenuation
def set_attenuation(self, attenuation):
"""Stores the new attenuation value and prints it to console.
"""Stores the new attenuation value.
:param attenuation: The attenuation value in dB.
"""
@ -60,7 +60,6 @@ class Ldasim:
raise ValueError("Cannot set attenuation {} < 0".format(att))
else:
att = round(att.amount*4)/4. * dB
print("setting attenuation to {}".format(att))
self._attenuation = att
def ping(self):