Skip to content

Commit 8988da7

Browse files
psardin001florent-lamiraux
authored andcommitted
Remove duplicate converter runtime warning
1 parent 2ef687b commit 8988da7

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

src/pyhpp/__init__.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
import eigenpy # noqa: F401
1+
import warnings
2+
3+
warnings.filterwarnings(
4+
"ignore",
5+
message="to-Python converter .* already registered",
6+
category=RuntimeWarning,
7+
)
8+
9+
import eigenpy # noqa: E402, F401

0 commit comments

Comments
 (0)