mirror of
https://github.com/Akarys42/cloudflare-ddns-docker.git
synced 2025-05-10 08:45:16 -06:00
Fix import ordering
This commit is contained in:
@ -1,11 +1,10 @@
|
||||
import re
|
||||
|
||||
import requests
|
||||
from requests import Request, Response, codes, HTTPError
|
||||
from cloudflare_ddns.constants import BASE_ENDPOINT, IP_API_URL_IPV4, IP_API_URL_IPV6
|
||||
from requests import HTTPError, Request, Response, codes
|
||||
from requests.auth import AuthBase
|
||||
|
||||
from cloudflare_ddns.constants import IP_API_URL_IPV4, IP_API_URL_IPV6, BASE_ENDPOINT
|
||||
|
||||
DURATION_REGEX = re.compile(
|
||||
r"((?P<days>\d+?) ?(days|day|D|d) ?)?"
|
||||
r"((?P<hours>\d+?) ?(hours|hour|H|h) ?)?"
|
||||
|
Reference in New Issue
Block a user