disable noise testing

.. this is not what I care about at the moment
This commit is contained in:
Jeff Epler 2021-10-25 08:21:33 -05:00
parent cec375438f
commit 5f4133f0dc

1
sig2ms.py Normal file → Executable file
View file

@ -9,6 +9,7 @@ def noise_one(c):
return c
def noise(s):
return s
return "".join(noise_one(c) for c in s)
wf = {}