Skip to content

Commit

Permalink
un-capitalize folders
Browse files Browse the repository at this point in the history
  • Loading branch information
austinschneider committed Sep 2, 2024
1 parent 2a1a7d0 commit 86b9841
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions python/_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,17 +662,17 @@ def _get_model_path(model_name, prefix=None, suffix=None, is_file=True, must_exi


def get_detector_model_file_path(model_name, must_exist=True):
return _get_model_path(model_name, prefix="Detectors/densities", suffix=".dat", is_file=True, must_exist=must_exist)
return _get_model_path(model_name, prefix="detectors/densities", suffix=".dat", is_file=True, must_exist=must_exist)


def get_material_model_file_path(model_name, must_exist=True):
return _get_model_path(model_name, prefix="Detectors/materials", suffix=".dat", is_file=True, must_exist=must_exist)
return _get_model_path(model_name, prefix="detectors/materials", suffix=".dat", is_file=True, must_exist=must_exist)


_resource_folder_by_name = {
"flux": "Fluxes",
"detector": "Detectors",
"processes": "Processes",
"flux": "fluxes",
"detector": "detectors",
"processes": "processes",
}


Expand Down

0 comments on commit 86b9841

Please sign in to comment.