mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Organise imports
This commit is contained in:
parent
59c1c55407
commit
4669bede07
1 changed files with 4 additions and 6 deletions
|
|
@ -12,12 +12,10 @@ from ssl import create_default_context
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import requests.auth
|
import requests.auth
|
||||||
from requests.utils import parse_dict_header
|
from requests.utils import parse_dict_header
|
||||||
from tenacity import (
|
from tenacity import retry
|
||||||
retry,
|
from tenacity import retry_if_exception_type
|
||||||
retry_if_exception_type,
|
from tenacity import stop_after_attempt
|
||||||
stop_after_attempt,
|
from tenacity import wait_exponential
|
||||||
wait_exponential,
|
|
||||||
)
|
|
||||||
|
|
||||||
from . import __version__
|
from . import __version__
|
||||||
from . import exceptions
|
from . import exceptions
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue