Skip to content

Commit 0e6c782

Browse files
committed
Renamed method
1 parent 724d842 commit 0e6c782

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ChatGPT.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def show_input(self):
2929

3030
self.window.show_input_panel(
3131
self.show_input_title(),
32-
self.show_input_last(),
32+
self.show_input_value(),
3333
self.show_input_done,
3434
None,
3535
None
@@ -38,9 +38,9 @@ def show_input(self):
3838
def show_input_title(self):
3939
return 'ChatGPT Question (model: %s | timeout: %s)' % (self.settings['model'], self.settings['timeout'])
4040

41-
def show_input_last(self):
41+
def show_input_value(self):
4242
if len(self.settings['api_key']) == 0:
43-
return 'You must set the API Key (Preferences > Package Settings > ChatGPT > Settings - User)'
43+
return 'You must set the API Key (Preferences > Package Settings > ChatGPT > Settings)'
4444

4545
for region in self.view.sel():
4646
if not region.empty():

0 commit comments

Comments
 (0)