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`
This commit is contained in:
Ulan Aitbay 2023-05-27 18:42:23 +05:00 committed by GitHub
parent e35264d3db
commit 41b056b756
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ import fake_useragent
import random
from password_generator import PasswordGenerator
from utils import create_email, check_email
from .utils import create_email, check_email
class Account: