We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb5d3d3 commit c64d591Copy full SHA for c64d591
src/pyff/pipes.py
@@ -2,6 +2,7 @@
2
Pipes and plumbing. Plumbing instances are sequences of pipes. Each pipe is called in order to load, select,
3
transform, sign or output SAML metadata.
4
"""
5
+
6
from __future__ import annotations
7
8
import functools
@@ -17,7 +18,8 @@
17
18
from pyff.logs import get_log
19
from pyff.repo import MDRepository
20
from pyff.store import SAMLStoreBase
-from pyff.utils import PyffException, is_text, resource_string
21
+from pyff.utils import is_text, resource_string
22
+from pyff.exceptions import PyffException
23
24
log = get_log(__name__)
25
0 commit comments