Skip to content

Commit 5c8bb4f

Browse files
committed
fixes
1 parent d88d662 commit 5c8bb4f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

python/plot3d/glennht/export_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def populate_reference_from_inputs(
242242
rho_solid: float | None = None,
243243
):
244244
"""Fill job.ReferenceCondFull from physics and then mirror into job.ReferenceCond."""
245-
from glennht_export_classes import ReferenceCond # local import to avoid circular typing
245+
from .class_definitions import ReferenceCond # local import to avoid circular typing
246246

247247
rcfull = job.ReferenceCondFull
248248
MolW = MolW if MolW not in (None, 0) else _AIR_MOLW_DEFAULT
@@ -630,7 +630,7 @@ def export_to_glennht_conn(matches:List[Dict[str, Dict[int, str]]],outer_faces:L
630630
# ============================================================
631631
if __name__ == "__main__":
632632
# Minimal smoke test (requires your glennht_export_classes.py definitions)
633-
from glennht_export_classes import (
633+
from .class_definitions import (
634634
Job, InletBC, OutletBC, BoundaryConditionType, BCGroup,
635635
)
636636

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "plot3d"
3-
version = "1.8.1"
3+
version = "1.8.2"
44
description = "Plot3D python utilities for reading and writing and also finding connectivity between blocks"
55
authors = ["Paht Juangphanich <paht.juangphanich@nasa.gov>"]
66

0 commit comments

Comments
 (0)