Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Commit f2d632b

Browse files
authored
Merge pull request #6 from reyoung/master
Fix bug `write_config` when self._config_path is None
2 parents a46707a + 8806f01 commit f2d632b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

chatgpt/chatgpt.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import tls_client
66
import urllib.parse
77

8-
from typing import List
8+
from typing import List, Optional
99
from uuid import uuid4 as uuid
1010
from urllib.error import HTTPError
1111
from .errors import ChatgptError, ChatgptErrorCodes
@@ -289,7 +289,9 @@ def load_config(self, config_path: str = DEFAULT_CONFIG_PATH):
289289
raise ChatgptError("Error loading the configuration file in \"{}\"".format(self._config_path),
290290
ChatgptErrorCodes.CONFIG_FILE_ERROR) from e
291291

292-
def write_config(self, config_path: str = DEFAULT_CONFIG_PATH):
292+
def write_config(self, config_path: Optional[str] = None):
293+
if config_path is None:
294+
config_path = self.DEFAULT_CONFIG_PATH
293295
self._config_path = config_path
294296
try:
295297
config = {

0 commit comments

Comments
 (0)