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`
pull/614/head
Ulan Aitbay 1 year ago committed by GitHub
parent e35264d3db
commit 41b056b756
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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:

Loading…
Cancel
Save