Skip to content

Commit

Permalink
changing location.py to use "." instead of "|"
Browse files Browse the repository at this point in the history
  • Loading branch information
shayla831 committed Dec 6, 2023
1 parent 382d154 commit 43ff578
Show file tree
Hide file tree
Showing 2 changed files with 8,354 additions and 8,354 deletions.
4 changes: 2 additions & 2 deletions titan/location.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def create_params(self, params: ObjMap) -> ObjMap:
for param_path, defn in defns.items():
if param_path != "ls_default":
if defn.field == "scalar":
utils.scale_param(new_params, param_path, defn.scalar)
utils.scale_param(new_params, param_path, defn.scalar, delimiter=".")
elif defn.field == "override":
utils.override_param(new_params, param_path, defn.override)
utils.override_param(new_params, param_path, defn.override, delimiter=".")

return new_params

Expand Down
Loading

0 comments on commit 43ff578

Please sign in to comment.