remove trailing spaces

This commit is contained in:
Johannes Bittner 2023-09-17 12:43:32 +02:00
parent 28f602902e
commit 7e9e14517d
1 changed files with 4 additions and 4 deletions

View File

@ -9,13 +9,13 @@
# Authors
# -------
#
# * Johannes Bittner (https://github.com/johannes87)
# * Johannes Bittner (https://github.com/johannes87)
#
# ------------------------------------------------------------------------------
_chatblade() {
local -a args
args+=(
'(-h --help)'{-h,--help}'[show this help message and exit]'
'--openai-api-key[the OpenAI API key can also be set as env variable OPENAI_API_KEY]'
@ -42,7 +42,7 @@ _chatblade() {
'--session-delete[delete session]'
'--session-rename[rename session]:new session:->sessions'
)
case $state in
(sessions)
local -a sessions
@ -50,7 +50,7 @@ _chatblade() {
_describe 'session' sessions
;;
esac
_arguments -s $args
}