We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5411936 commit 3c5f6daCopy full SHA for 3c5f6da
refact_webgui/dashboards/dash_prime.py
@@ -13,7 +13,7 @@ def robot_human_ratio(robot: int, human: int) -> float:
13
# in older versions of refact LSP negative values of human metric existed
14
if robot + human == 0:
15
return 0
16
- return round(robot / (robot + human), 2)
+ return round(100 * robot / (robot + human), 2)
17
18
19
def barplot_rh(
0 commit comments