Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

edk2toolext.capsule: add __init__.py #628

Merged
merged 2 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions edk2toolext/capsule/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
##
# Copyright (c) Microsoft Corporation
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
"""This file exists to satisfy pythons packaging requirements.

Read more: https://docs.python.org/3/reference/import.html#regular-packages
"""
1 change: 1 addition & 0 deletions edk2toolext/capsule/capsule_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import sys

import yaml

from edk2toolext.capsule import capsule_helper, signing_helper

TOOL_DESCRIPTION = """
Expand Down
3 changes: 2 additions & 1 deletion edk2toolext/capsule/signing_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@

import importlib

from edk2toolext.capsule import signtool_signer
from edk2toollib.utility_functions import import_module_by_file_name

from edk2toolext.capsule import signtool_signer

# Valid types.
PYOPENSSL_SIGNER = 'pyopenssl'
SIGNTOOL_SIGNER = 'signtool'
Expand Down
Loading