From 4ce9e29d85ed6d5dc5dc9a6d7ceec166f76a654d Mon Sep 17 00:00:00 2001 From: Masoud Ghorbani Date: Thu, 4 Apr 2024 14:37:32 +0330 Subject: [PATCH] chore: resolved typos in comments --- syncshell/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syncshell/cli.py b/syncshell/cli.py index 96c0be8..717e9bf 100644 --- a/syncshell/cli.py +++ b/syncshell/cli.py @@ -38,7 +38,7 @@ def auth(self): getting_started = textwrap.fill(constants.HELP_MESSAGE, width=80) print(getting_started) - # Promte token key + # Prompt token key prompt_token = input("Enter your Github token key: ") config.parser["Auth"]["token"] = str(prompt_token) @@ -47,7 +47,7 @@ def auth(self): spinner = Spinner.NewTask("Check authentication...") - # Write config file if Github user alreaded authorized + # Write config file if Github user already authorized if config.is_logged_in(): spinner.succeed("Your Github token key is authenticated.") config.write()