Skip to content

Commit

Permalink
use isort to sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Jul 12, 2023
1 parent 5499fd2 commit 86a1893
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyipsw/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import click
from humanfriendly.tables import format_smart_table

from pyipsw.pyipsw import get_devices, DEVICES_FIELDS, get_itunes, ITUNES_FIELDS, download_devices
from pyipsw.pyipsw import DEVICES_FIELDS, ITUNES_FIELDS, download_devices, get_devices, get_itunes

DEFAULT_DEVICES_COLUMNS = ['device', 'version', 'buildid', 'filename']
DEFAULT_ITUNES_COLUMNS = ['os', 'version', 'releasedate', 'url']
Expand Down
4 changes: 2 additions & 2 deletions pyipsw/pyipsw.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from functools import lru_cache
import hashlib
import os
from functools import lru_cache

from tqdm import tqdm
import requests
from tqdm import tqdm

IPSW_API_FIRMWARES_JSON = 'https://api.ipsw.me/v2.1/firmwares.json/condensed'
DEVICES_FIELDS = ['device', 'name', 'version', 'buildid', 'url', 'uploaddate', 'size', 'signed', 'sha1sum',
Expand Down

0 comments on commit 86a1893

Please sign in to comment.