Skip to content

Commit

Permalink
Change the delimiter
Browse files Browse the repository at this point in the history
Signed-off-by: DarkLight1337 <[email protected]>
  • Loading branch information
DarkLight1337 committed Dec 19, 2024
1 parent c48f7c5 commit b84ff42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/multimodal/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ def _iter_bytes_to_hash(self, key: str, obj: object) -> Iterable[bytes]:
return
if isinstance(obj, dict):
for k, v in obj.items():
yield from self._iter_bytes_to_hash(f"{key}_{k}", v)
yield from self._iter_bytes_to_hash(f"{key}.{k}", v)
return

# Simple cases
Expand Down

0 comments on commit b84ff42

Please sign in to comment.