linting
This commit is contained in:
parent
1d92b52379
commit
acf8147fa1
|
@ -9,7 +9,7 @@ import subprocess
|
||||||
import tempfile
|
import tempfile
|
||||||
from math import inf
|
from math import inf
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Dict, Optional, Tuple
|
from typing import Optional, Tuple
|
||||||
|
|
||||||
from bebop.bookmarks import (
|
from bebop.bookmarks import (
|
||||||
get_bookmarks_path,
|
get_bookmarks_path,
|
||||||
|
|
|
@ -6,9 +6,7 @@ from typing import Optional
|
||||||
|
|
||||||
from bebop.browser.browser import Browser
|
from bebop.browser.browser import Browser
|
||||||
from bebop.command_line import CommandLine
|
from bebop.command_line import CommandLine
|
||||||
from bebop.fs import (
|
from bebop.fs import get_downloads_path, get_identities_list_path
|
||||||
get_downloads_path, get_identities_path, get_identities_list_path
|
|
||||||
)
|
|
||||||
from bebop.identity import (
|
from bebop.identity import (
|
||||||
ClientCertificateException, create_certificate, get_cert_and_key,
|
ClientCertificateException, create_certificate, get_cert_and_key,
|
||||||
get_identities_for_url, load_identities, save_identities
|
get_identities_for_url, load_identities, save_identities
|
||||||
|
@ -295,7 +293,7 @@ def _handle_cert_required(
|
||||||
"""
|
"""
|
||||||
identities = load_identities(get_identities_list_path())
|
identities = load_identities(get_identities_list_path())
|
||||||
if not identities:
|
if not identities:
|
||||||
browser.set_status_error(f"Can't load identities.")
|
browser.set_status_error("Can't load identities.")
|
||||||
return None
|
return None
|
||||||
browser.identities = identities
|
browser.identities = identities
|
||||||
|
|
||||||
|
|
|
@ -26,12 +26,11 @@ import hashlib
|
||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
import secrets
|
import secrets
|
||||||
import string
|
|
||||||
import subprocess
|
import subprocess
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Optional, Union
|
from typing import Optional
|
||||||
|
|
||||||
from bebop.fs import get_identities_path, get_user_data_path
|
from bebop.fs import get_identities_path
|
||||||
|
|
||||||
|
|
||||||
def load_identities(identities_path: Path) -> Optional[dict]:
|
def load_identities(identities_path: Path) -> Optional[dict]:
|
||||||
|
|
Reference in a new issue