Skip to content

Commit 30ca248

Browse files
committed
small fixes
1 parent c2a7a14 commit 30ca248

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

pygalmesh/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
Union,
2323
)
2424

25+
from . import _cli
2526
from .__about__ import __version__
2627
from .main import (
2728
generate_from_array,
@@ -37,6 +38,8 @@
3738
__all__ = [
3839
"__version__",
3940
#
41+
"_cli",
42+
#
4043
"DomainBase",
4144
"SizingFieldBase",
4245
"Translate",

test/test_inr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
def test_inr():
99
this_dir = pathlib.Path(__file__).resolve().parent
1010
mesh = pygalmesh.generate_from_inr(
11-
this_dir / "meshes", "skull_2.9.inr", cell_size=5.0, verbose=False
11+
this_dir / "meshes" / "skull_2.9.inr", cell_size=5.0, verbose=False
1212
)
1313

1414
tol = 2.0e-3

0 commit comments

Comments
 (0)