Skip to content

Commit c755f3b

Browse files
style: run prettier on changed files
1 parent df84e0c commit c755f3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pfSense-pkg-RESTAPI/files/usr/local/pkg/RESTAPI/Models/SystemStatus.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ class SystemStatus extends Model {
255255
$cpu_usage = ($load_avg_last_min / $cpu_count) * 100;
256256

257257
# If the usage estimate is above 100%, ensure it is capped at 100
258-
return ($cpu_usage <= 100) ? $cpu_usage : 100;
258+
return $cpu_usage <= 100 ? $cpu_usage : 100;
259259
}
260260

261261
/**

0 commit comments

Comments
 (0)