Skip to content

Commit a661cc6

Browse files
Revert "use caching client for FPC5 doc graph generation to avoid repeated runs" - will cherry-pick onto main later separately
This reverts commit 77ba179.
1 parent 64c9eea commit a661cc6

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/geophires_docs/generate_fervo_project_cape_5_graphs.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,9 @@ def _get_full_thermal_drawdown_profile(input_and_result: tuple[GeophiresInputPar
4040
return _get_full_profile(input_and_result, 'Thermal Drawdown')
4141

4242

43-
_FULL_PROFILE_CACHING_GEOPHIRES_CLIENT: GeophiresXClient = GeophiresXClient(enable_caching=True)
44-
45-
4643
def _get_full_profile(input_and_result: tuple[GeophiresInputParameters, GeophiresXResult], profile_key: str):
4744
input_params: GeophiresInputParameters = input_and_result[0]
48-
result = _FULL_PROFILE_CACHING_GEOPHIRES_CLIENT.get_geophires_result(input_params)
45+
result = GeophiresXClient().get_geophires_result(input_params)
4946

5047
with open(result.json_output_file_path, encoding='utf-8') as f:
5148
full_result_obj = json.load(f)

0 commit comments

Comments
 (0)