Skip to content

Commit

Permalink
Fix import order in __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphje committed Dec 8, 2024
1 parent 429510a commit cbcb5f2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion signify/asn1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from . import ctl, spc

__all__ = ["spc", "ctl"]
__all__ = ["ctl", "spc"]
16 changes: 8 additions & 8 deletions signify/authenticode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@
)

__all__ = [
"AUTHROOTSTL_PATH",
"CERTIFICATE_LOCATION",
"TRUSTED_CERTIFICATE_STORE_NO_CTL",
"TRUSTED_CERTIFICATE_STORE",
"AuthenticodeVerificationResult",
"TRUSTED_CERTIFICATE_STORE_NO_CTL",
"AuthenticodeCounterSignerInfo",
"AuthenticodeSignedData",
"AuthenticodeSignerInfo",
"AuthenticodeVerificationResult",
"CertificateTrustList",
"CertificateTrustSubject",
"IndirectData",
"AuthenticodeSignedData",
"RFC3161SignerInfo",
"TSTInfo",
"RFC3161SignedData",
"RFC3161SignerInfo",
"SignedPEFile",
"AUTHROOTSTL_PATH",
"CertificateTrustList",
"CertificateTrustSubject",
"TSTInfo",
]
2 changes: 1 addition & 1 deletion signify/pkcs7/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .signeddata import SignedData
from .signerinfo import CounterSignerInfo, SignerInfo

__all__ = ["SignerInfo", "CounterSignerInfo", "SignedData"]
__all__ = ["CounterSignerInfo", "SignedData", "SignerInfo"]

0 comments on commit cbcb5f2

Please sign in to comment.