Skip to content

Commit

Permalink
Fixed from utils import create_email, check_email in `gpt4free/uses…
Browse files Browse the repository at this point in the history
…less/__init__.py`

### **Before**:
```
from utils import create_email, check_email
```


### **Now**:
```
from .utils import create_email, check_email
```


### **Change**:
`Added dot before module name`
  • Loading branch information
enganese authored May 27, 2023
1 parent e35264d commit 41b056b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt4free/usesless/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import random
from password_generator import PasswordGenerator

from utils import create_email, check_email
from .utils import create_email, check_email


class Account:
Expand Down

0 comments on commit 41b056b

Please sign in to comment.