Skip to content
Open
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
4 changes: 2 additions & 2 deletions datashuttle/tui/tooltips.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def get_tooltip(id: str) -> str:
"when hovering the mouse over a folder:\n\n"
"-CTRL+O : open the folder in the system filebrowser.\n"
"-CTRL+N : rename a file or folder.\n"
"-CTRL+Q : copy the full filepath to clipboard.\n"
"-CTRL+C (with SHIFT): copy the highlighted filepath to clipboard.\n"
"-CTRL+R : refresh the folder tree.\n"
"-CTRL+F : fill the 'sub-' or 'ses-' input with the foldername.\n"
"-CTRL+A : similar to CTRL+F, but append."
Expand Down Expand Up @@ -206,7 +206,7 @@ def get_tooltip(id: str) -> str:
"Keyboard shortcuts, when hovering the mouse over a folder:\n\n"
"-CTRL+O : open the folder in the system filebrowser.\n"
"-CTRL+N : rename a file or folder.\n"
"-CTRL+Q : copy the full filepath to clipboard.\n"
"-CTRL+C (with SHIFT): copy the highlighted filepath to clipboard.\n"
"-CTRL+R : refresh the folder tree.\n"
"-CTRL+F : fill the 'sub-' or 'ses-' input with the foldername.\n"
"-CTRL+A : similar to CTRL+F, but append."
Expand Down
7 changes: 7 additions & 0 deletions datashuttle/utils/custom_exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
"""Custom exception classes for datashuttle.

This module defines custom exceptions used throughout the datashuttle package
for specific error conditions.
"""


class ConfigError(Exception):
"""Raise an error relating to a configuration problem."""

Expand Down