Skip to content

Commit

Permalink
updated type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
sudouser777 committed Apr 24, 2023
1 parent ceaa47b commit d97cbce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quora/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

from quora.api import Client as PoeClient
from quora.mail import Emailnator
from typing import Optional

# from twocaptcha import TwoCaptcha
# solver = TwoCaptcha('72747bf24a9d89b4dcc1b24875efd358')
Expand Down Expand Up @@ -183,7 +184,7 @@ def create(

class Account:
def create(
proxy: str | None = None,
proxy: Optional[str] = None,
logging: bool = False,
enable_bot_creation: bool = False,
):
Expand Down

0 comments on commit d97cbce

Please sign in to comment.