diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2022-01-07 14:02:24 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2022-01-07 14:02:24 -0500 |
commit | 040b2102db8b9fb44f773b72d4f7cfd61a59aa1c (patch) | |
tree | 410a0ad99017c26fb0ed3f9abbaa59530c7e6100 /qolab/hardware/scope | |
parent | 0b2cef57d84956f8934f9409db6fdd2a3ec58da1 (diff) | |
download | qolab-040b2102db8b9fb44f773b72d4f7cfd61a59aa1c.tar.gz qolab-040b2102db8b9fb44f773b72d4f7cfd61a59aa1c.zip |
added print of the saved file name
Diffstat (limited to 'qolab/hardware/scope')
-rw-r--r-- | qolab/hardware/scope/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qolab/hardware/scope/__init__.py b/qolab/hardware/scope/__init__.py index 53d862b..3c0889f 100644 --- a/qolab/hardware/scope/__init__.py +++ b/qolab/hardware/scope/__init__.py @@ -80,7 +80,8 @@ class Scope(BasicInstrument): allTraces.config['item_format']=item_format if fname is None: fname = self.getNextDataFile(extention=extention) - allTraces.save(fname, item_format=item_format) + allTraces.save(fname) + print(f'Data saved to: {fname}') return(fname) |