Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: get ar_hdf5 running again #135

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions SciFiReaders/readers/microscopy/spm/afm/AR_hdf5.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ def read(self, verbose=False):
----------
verbose : Boolean (Optional)
Whether or not to show print statements for debugging
debug : Boolean (Optional)
Whether or not to print log statements
Returns
-------
sidpy.Dataset : List of sidpy.Dataset objects.
Expand Down Expand Up @@ -310,7 +308,7 @@ def get_def_unit(self, chan_name):
# This should be the laser virtual deflection
default_unit = 'm'
else:
if self.debug:
if self.verbose:
print('Unknown unit for channel: {}'.format(chan_name))
print('Unit set to "unknown"')
default_unit = 'unknown'
Expand Down
Loading