Skip to content

Commit 7621227

Browse files
author
soconnor71
committed
TNR-1804: optimized imports
1 parent b55830b commit 7621227

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

vacasa/connect/connect.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
"""Vacasa Connect Python SDK."""
2-
from retry import retry
32
import hashlib
43
import hmac
5-
import pendulum
6-
import requests
74
from typing import Optional
85
from urllib.parse import urlparse, urlunparse
96

7+
import pendulum
8+
import requests
9+
from retry import retry
10+
1011

1112
def is_https_url(url: str) -> bool:
1213
return urlparse(url).scheme.lower() == 'https'

0 commit comments

Comments
 (0)