Skip to content

Commit

Permalink
Apply black formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
azubieta committed Jun 21, 2022
1 parent 3873385 commit e80dfbe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion appimagebuilder/modules/deploy/apt/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, apt_venv: Venv):
self.logger = logging.getLogger("AptPackageDeploy")

def deploy(
self, include_patterns: [str], appdir_root: pathlib.Path, exclude_patterns=None
self, include_patterns: [str], appdir_root: pathlib.Path, exclude_patterns=None
) -> [str]:
"""Deploy the packages and their dependencies to appdir_root.
Expand Down
8 changes: 4 additions & 4 deletions appimagebuilder/modules/prime/appimage_primer.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, context):
self.config = self.context.recipe.AppImage
self.bundle_main_arch = self.config.arch()
self.carrier_path = (
self.context.build_dir / "prime" / ("runtime-%s" % self.bundle_main_arch)
self.context.build_dir / "prime" / ("runtime-%s" % self.bundle_main_arch)
)

appimage_file_name = self._resolve_appimage_file_name()
Expand Down Expand Up @@ -92,8 +92,8 @@ def _make_squashfs(self, appdir: pathlib.Path):

def _get_appimage_kit_runtime(self):
url = (
"https://github.com/AppImage/AppImageKit/releases/download/continuous/runtime-%s"
% self.bundle_main_arch
"https://github.com/AppImage/AppImageKit/releases/download/continuous/runtime-%s"
% self.bundle_main_arch
)
logging.info("Downloading: %s" % url)

Expand Down Expand Up @@ -124,7 +124,7 @@ def _add_appimage_update_information(self, binary):
)

def _sign_bundle_sha256_digest(
self, carrier_elf: lief.Binary, bundle_sha256: bytes
self, carrier_elf: lief.Binary, bundle_sha256: bytes
):
sign_key = self.config["sign-key"]()
if sign_key:
Expand Down

0 comments on commit e80dfbe

Please sign in to comment.