Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
lmoj committed May 16, 2023
1 parent 69a4f4a commit 034da90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gotrue/_async/gotrue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from json import loads
from time import time
from typing import Callable, Dict, List, Tuple, Union
from urllib.parse import parse_qs, quote, urlencode, urlparse
from urllib.parse import parse_qs, urlencode, urlparse
from uuid import uuid4

from ..constants import (
Expand Down
2 changes: 1 addition & 1 deletion gotrue/_sync/gotrue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from json import loads
from time import time
from typing import Callable, Dict, List, Tuple, Union
from urllib.parse import parse_qs, quote, urlencode, urlparse
from urllib.parse import parse_qs, urlencode, urlparse
from uuid import uuid4

from ..constants import (
Expand Down

0 comments on commit 034da90

Please sign in to comment.