diff options
author | andreas128 <Andreas> | 2017-09-27 12:49:04 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-09-27 12:49:04 +0200 |
commit | 02a0b7419fc5b7aaf18fb9be4ed0888defa77e2d (patch) | |
tree | c49c05edc82af242de4b07ad97a9d3307457f072 /dpd/src/Test_data.py | |
parent | 38e4b3a35d4265844641d4527d8952080c0d0d79 (diff) | |
download | dabmod-02a0b7419fc5b7aaf18fb9be4ed0888defa77e2d.tar.gz dabmod-02a0b7419fc5b7aaf18fb9be4ed0888defa77e2d.tar.bz2 dabmod-02a0b7419fc5b7aaf18fb9be4ed0888defa77e2d.zip |
Move consts to Const.py; Cleanup
Diffstat (limited to 'dpd/src/Test_data.py')
-rw-r--r-- | dpd/src/Test_data.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dpd/src/Test_data.py b/dpd/src/Test_data.py index 9dd0913..67f4dff 100644 --- a/dpd/src/Test_data.py +++ b/dpd/src/Test_data.py @@ -14,7 +14,7 @@ try: except: logging_path = "/tmp/" -import src.const +import src.Const import src.Dab_Util import numpy as np import matplotlib @@ -40,7 +40,7 @@ class Test_data: plt.plot(np.angle(np.fft.fftshift(np.fft.fft(tx_orig))), 'p') """ - self.c = src.const.const(sample_rate) + self.c = src.Const.Const(sample_rate) self.du = src.Dab_Util.Dab_Util(sample_rate) self.file_paths = { |