Skip to content

Commit 3d28f7f

Browse files
committed
Fixed python lint issue.
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent 3342dc5 commit 3d28f7f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

flow/util/genMetrics.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,12 @@ def extract_metrics(
302302
required=False,
303303
)
304304

305-
floorplan_swapped = metrics_dict.get("floorplan__swapped_arithmetic_module_count", 0)
306-
placeopt_swapped = metrics_dict.get("placeopt__swapped_arithmetic_module_count", 0)
305+
floorplan_swapped = metrics_dict.get(
306+
"floorplan__swapped_arithmetic_module_count", 0
307+
)
308+
placeopt_swapped = metrics_dict.get(
309+
"placeopt__swapped_arithmetic_module_count", 0
310+
)
307311
total_swapped = int(floorplan_swapped) + int(placeopt_swapped)
308312
metrics_dict["finish__swapped_arithmetic_module_count"] = total_swapped
309313

0 commit comments

Comments
 (0)