Skip to content

Commit

Permalink
Update __init__.py (refactored import)
Browse files Browse the repository at this point in the history
### **Before**:
`from typings import AiColorsResponse`

### **After**:
`from typings import AiColorsResponse`

### **Comment**:
`Now, it perfectly works!`
  • Loading branch information
enganese authored May 28, 2023
1 parent ebc10fa commit 872bb6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt4free/aicolors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fake_useragent
import requests
import json
from typings import AiColorsResponse
from .typings import AiColorsResponse


class Completion:
Expand Down

0 comments on commit 872bb6d

Please sign in to comment.