Skip to content

Commit 78aa305

Browse files
committed
Use a more intuitive autodoc order
1 parent 0ab5f74 commit 78aa305

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
source_suffix = [".rst", ".md"]
1212
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
1313
pygments_style = "sphinx"
14+
autodoc_member_order = "bysource"
1415
autodoc_typehints = "description"
1516
typehints_fully_qualified = True
1617
always_document_param_types = True

signxml/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
# isort: skip_file
2+
from .signer import XMLSigner # noqa:F401
3+
from .verifier import XMLVerifier, VerifyResult # noqa:F401
14
from .algorithms import XMLSecurityDigestAlgorithm as digest_algorithms # noqa:F401
25
from .algorithms import XMLSecuritySignatureMethod as signature_methods # noqa:F401
36
from .algorithms import XMLSignatureMethods as methods # noqa:F401
47
from .exceptions import InvalidCertificate, InvalidDigest, InvalidInput, InvalidSignature # noqa:F401
58
from .processor import XMLSignatureProcessor # noqa:F401
6-
from .signer import XMLSigner # noqa:F401
79
from .util import SigningSettings, namespaces # noqa:F401
8-
from .verifier import VerifyResult, XMLVerifier # noqa:F401

0 commit comments

Comments
 (0)