Agent: Rename depth to current_depth in propagation.py

This commit is contained in:
vakaris_zilius 2022-06-22 13:14:24 +00:00
parent f0029a0d82
commit 8358253fc7
1 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
def should_propagate(config: dict, depth: int) -> bool:
return config["config"]["depth"] > depth
def should_propagate(config: dict, current_depth: int) -> bool:
return config["config"]["depth"] > current_depth