Skip to content

Commit 35215c6

Browse files
committed
[CLN] Hide temp_interpolation_values from repr output
Added `repr=False` to `temp_interpolation_values` to prevent it from being displayed in object representations. This improves clarity and ensures sensitive or non-essential details are not exposed.
1 parent 8733909 commit 35215c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gempy_engine/core/data/options/interpolation_options.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ class CacheMode(enum.Enum):
4242
# region Volatile
4343
temp_interpolation_values: TempInterpolationValues = Field(
4444
default_factory=TempInterpolationValues,
45-
exclude=True
45+
exclude=True,
46+
repr=False
4647
)
4748

4849
# endregion

0 commit comments

Comments
 (0)