Raju Komati
commited on
updated type hint
Browse files- quora/__init__.py +2 -1
quora/__init__.py
CHANGED
@@ -18,6 +18,7 @@ from tls_client import Session as TLS
|
|
18 |
|
19 |
from quora.api import Client as PoeClient
|
20 |
from quora.mail import Emailnator
|
|
|
21 |
|
22 |
# from twocaptcha import TwoCaptcha
|
23 |
# solver = TwoCaptcha('72747bf24a9d89b4dcc1b24875efd358')
|
@@ -183,7 +184,7 @@ class Model:
|
|
183 |
|
184 |
class Account:
|
185 |
def create(
|
186 |
-
proxy: str
|
187 |
logging: bool = False,
|
188 |
enable_bot_creation: bool = False,
|
189 |
):
|
|
|
18 |
|
19 |
from quora.api import Client as PoeClient
|
20 |
from quora.mail import Emailnator
|
21 |
+
from typing import Optional
|
22 |
|
23 |
# from twocaptcha import TwoCaptcha
|
24 |
# solver = TwoCaptcha('72747bf24a9d89b4dcc1b24875efd358')
|
|
|
184 |
|
185 |
class Account:
|
186 |
def create(
|
187 |
+
proxy: Optional[str] = None,
|
188 |
logging: bool = False,
|
189 |
enable_bot_creation: bool = False,
|
190 |
):
|