Skip to content

Commit c64d591

Browse files
Move PyffException.
1 parent cb5d3d3 commit c64d591

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/pyff/pipes.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Pipes and plumbing. Plumbing instances are sequences of pipes. Each pipe is called in order to load, select,
33
transform, sign or output SAML metadata.
44
"""
5+
56
from __future__ import annotations
67

78
import functools
@@ -17,7 +18,8 @@
1718
from pyff.logs import get_log
1819
from pyff.repo import MDRepository
1920
from pyff.store import SAMLStoreBase
20-
from pyff.utils import PyffException, is_text, resource_string
21+
from pyff.utils import is_text, resource_string
22+
from pyff.exceptions import PyffException
2123

2224
log = get_log(__name__)
2325

0 commit comments

Comments
 (0)