XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Fixed `from utils import create_email, check_email` in `gpt4free/usesless/__init__.py`

### **Before**: ``` from utils import create_email, check_email ``` ### **Now**: ``` from .utils import create_email, check_email ``` ### **Change**: `Added dot before module name`

41b056b7
Ulan Aitbay <69082498+enganese@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified gpt4free/usesless/__init__.py +1 -1
@@ -7,7 +7,7 @@ import fake_useragent
7 7 import random
8 8 from password_generator import PasswordGenerator
9 9
10 from utils import create_email, check_email
10 from .utils import create_email, check_email
11 11
12 12
13 13 class Account: