Skip to content

Commit 5cc45b8

Browse files
committed
Fixed python link issue 2.
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent 3d28f7f commit 5cc45b8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

flow/util/genMetrics.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,7 @@ def extract_metrics(
305305
floorplan_swapped = metrics_dict.get(
306306
"floorplan__swapped_arithmetic_module_count", 0
307307
)
308-
placeopt_swapped = metrics_dict.get(
309-
"placeopt__swapped_arithmetic_module_count", 0
310-
)
308+
placeopt_swapped = metrics_dict.get("placeopt__swapped_arithmetic_module_count", 0)
311309
total_swapped = int(floorplan_swapped) + int(placeopt_swapped)
312310
metrics_dict["finish__swapped_arithmetic_module_count"] = total_swapped
313311

0 commit comments

Comments
 (0)