Skip to content

Commit 188a5ea

Browse files
committed
fix: removing redundant y/n option in prompt text
1 parent 81352e9 commit 188a5ea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Omit access token json file
2-
config/access_token.json
2+
./config/access_token.json
33

44

55
# IntelliJ

interface.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,15 @@ def validate(self, document):
115115
{
116116
'type': 'confirm',
117117
'name': 'print_logs',
118-
'message': "Print logs to console/terminal? (y/N):",
118+
'message': "Print logs to console/terminal?:",
119119
}
120120
]
121121

122122
CONFIRM_INTERFACE = [
123123
{
124124
'type': 'confirm',
125125
'name': 'is_finalized',
126-
'message': "Confirm above query (y/N):",
126+
'message': "Confirm above query:",
127127
}
128128
]
129129

@@ -138,7 +138,7 @@ def validate(self, document):
138138
"\nto increase your GitHub API query limit (5000 for authenticated queries)."
139139
"\nFollow these instructions to create a GitHub Personal Access Token"
140140
"\nhttps://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token"
141-
"\n\nWould you like to add a token? (Y/n)",
141+
"\n\nWould you like to add a token?",
142142
'default': True
143143
},
144144
{
@@ -153,7 +153,7 @@ def validate(self, document):
153153
{
154154
'type': 'confirm',
155155
'name': 'retry_add_token',
156-
'message': "Token not valid, would you like to try again? (Y/n)",
156+
'message': "Token not valid, would you like to try again?",
157157
'default': True
158158
},
159159
{

0 commit comments

Comments
 (0)