Skip to content

Commit 8f9084a

Browse files
committed
Fixed tclint issues.
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent bca317a commit 8f9084a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flow/scripts/util.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ proc is_physical_only_master { master } {
215215
"ENDCAP*"]
216216
set master_type [$master getType]
217217
foreach pattern $physical_only_type_patterns {
218-
if {[string match $pattern $master_type]} {
218+
if { [string match $pattern $master_type] } {
219219
return 1
220220
}
221221
}
@@ -224,13 +224,13 @@ proc is_physical_only_master { master } {
224224

225225
# Finds all physical-only masters in the current database and
226226
# returns their names.
227-
proc find_physical_only_masters {} {
227+
proc find_physical_only_masters { } {
228228
set db [::ord::get_db]
229229
set libs [$db getLibs]
230230
set physical_only_masters [list]
231231
foreach lib $libs {
232232
foreach master [$lib getMasters] {
233-
if {[is_physical_only_master $master]} {
233+
if { [is_physical_only_master $master] } {
234234
lappend physical_only_masters [$master getName]
235235
}
236236
}

0 commit comments

Comments
 (0)