Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion datashuttle/tui/screens/setup_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def show_connection_successful_message(self):
# may or may not be displayed.
try:
self.query_one("#setup_ssh_cancel_button").remove()
except BaseException:
except Exception:
pass

message = "Connection was set up successfully."
Expand Down
2 changes: 1 addition & 1 deletion datashuttle/utils/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ def datetime_are_iso_format(
format_to_check = utils.get_values_from_bids_formatted_name(
[name], key, return_as_int=False
)[0]
except:
except Exception:
return []

strfmt = formats[key]
Expand Down
Loading