diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3f589daa098346e2b1d1fe5fb057e9efdc5525d9..acab2d7652a38bd9d5ece8b7d1043351b3d81c69 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -35,3 +35,7 @@ repos: entry: mypy language: system types: [ python ] + - repo: https://github.com/codespell-project/codespell + rev: v2.2.4 + hooks: + - id: codespell diff --git a/clive/__private/ui/onboarding/onboarding.py b/clive/__private/ui/onboarding/onboarding.py index c018c9484510aec3f1cde021bdefbdbd4856cd38..cb2dd3e2f886845622b44aa7ef03e45607538c77 100644 --- a/clive/__private/ui/onboarding/onboarding.py +++ b/clive/__private/ui/onboarding/onboarding.py @@ -42,7 +42,8 @@ class Onboarding(Form[ProfileData]): def create_welcome_screen(self) -> ScreenBuilder[ProfileData]: return lambda owner: OnboardingWelcomeScreen( owner, - "Let's start onboarding!\nIn any moment you can press the `[blue]?[/]` button to see the help page.", + """Let's start onboarding! +In any moment you can press the `[blue]?[/]` button to see the help page.""", ) def create_finish_screen(self) -> ScreenBuilder[ProfileData]: diff --git a/scripts/run_instance.sh b/scripts/run_instance.sh index a32da2ebc3c1bd0cc13ae9361f768783d172a3ec..d805fa2c168067999b18e9aee4ef02c605e74562 100755 --- a/scripts/run_instance.sh +++ b/scripts/run_instance.sh @@ -8,7 +8,7 @@ source "$SCRIPTPATH/common.sh" log_exec_params "$@" -# Script reponsible for starting a docker container built for image specified at command line. +# Script responsible for starting a docker container built for image specified at command line. print_help () { echo "Usage: $0 <docker_img> [OPTION[=VALUE]]... [<hived_option>]..."