Skip to content

Commit

Permalink
rename modules to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
itsnebulalol committed Aug 1, 2022
1 parent 9942a24 commit e668609
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions permasigner/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
from subprocess import DEVNULL
import pkgutil

from .copier import Copier
from .hash import LdidHash
from .downloader import DpkgDeb, Ldid
from .ps_copier import Copier
from .ps_hash import LdidHash
from .ps_downloader import DpkgDeb, Ldid
from . import __version__
from .utils import Utils
from .logger import Logger, Colors
from .ps_utils import Utils
from .ps_logger import Logger, Colors


if not Utils.is_ios():
from .usbmux import USBMux
from .installer import Installer
from .ps_usbmux import USBMux
from .ps_installer import Installer


""" Main Function """
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions permasigner/downloader.py → permasigner/ps_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import os
from shutil import copy, rmtree, move

from .utils import Utils
from .logger import Logger
from .ps_utils import Utils
from .ps_logger import Logger


class DpkgDeb:
Expand Down
4 changes: 2 additions & 2 deletions permasigner/hash.py → permasigner/ps_hash.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import os
import hashlib
import requests
from .downloader import Ldid
from .logger import Logger
from .ps_downloader import Ldid
from .ps_logger import Logger


class Hash:
Expand Down
2 changes: 1 addition & 1 deletion permasigner/installer.py → permasigner/ps_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from scp import SCPClient
from subprocess import DEVNULL, PIPE

from .logger import Logger, Colors
from .ps_logger import Logger, Colors


class Installer:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion permasigner/utils.py → permasigner/ps_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
import importlib

from .logger import Logger
from .ps_logger import Logger


class Utils:
Expand Down

0 comments on commit e668609

Please sign in to comment.