Skip to content

Commit cb494db

Browse files
Add return type for deep_merge function
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 2b785b7 commit cb494db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cloudai/util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def prepare_output_dir(path: Path) -> Optional[Path]:
9090
return None
9191

9292

93-
def deep_merge(a: dict, b: dict):
93+
def deep_merge(a: dict, b: dict) -> dict:
9494
result = a.copy()
9595
for key in b:
9696
if key in result:

0 commit comments

Comments
 (0)