Skip to content

Commit 65b736e

Browse files
committed
chore: fix tclint
Signed-off-by: Jack Luar <[email protected]>
1 parent fd684a8 commit 65b736e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

flow/scripts/global_place.tcl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,15 @@ if { $::env(GPL_TIMING_DRIVEN) } {
3535

3636
# Parameters for phi coefficients in global placement
3737
# Validate phi coefficient constraints before using them
38-
if { [info exists ::env(MIN_PLACE_STEP_COEF)] && [info exists ::env(MAX_PLACE_STEP_COEF)] } {
38+
if { [info exists ::env(MIN_PLACE_STEP_COEF)] \
39+
&& [info exists ::env(MAX_PLACE_STEP_COEF)] } {
3940
set min_phi $::env(MIN_PLACE_STEP_COEF)
4041
set max_phi $::env(MAX_PLACE_STEP_COEF)
4142

4243
if { $min_phi > $max_phi } {
43-
utl::error GPL 200 "MIN_PLACE_STEP_COEF ($min_phi) cannot be greater than MAX_PLACE_STEP_COEF ($max_phi)"
44+
utl::error GPL 200 \
45+
"MIN_PLACE_STEP_COEF ($min_phi) cannot be greater than \
46+
MAX_PLACE_STEP_COEF ($max_phi)"
4447
}
4548
}
4649

0 commit comments

Comments
 (0)