Skip to content

Commit

Permalink
#558: fix pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly committed Dec 17, 2024
1 parent ce5ef80 commit 6a2ccf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lbaf/Execution/lbsAlgorithmBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#
import abc
import os
from typing import Set
from typing import Set, List

from ..IO.lbsStatistics import compute_function_statistics
from ..Model.lbsRank import Rank
Expand Down
4 changes: 2 additions & 2 deletions src/lbaf/Execution/lbsClusteringTransferStrategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def __build_rank_subclusters_heuristic(self, r_src : Rank, r_try : Rank, ave_loa

subclusters = {}

amount_over_average = src_load - ave_load;
amount_under_average = ave_load - try_load;
amount_over_average = src_load - ave_load
amount_under_average = ave_load - try_load

# print(f"amount_over_average={amount_over_average}, amount_under_average={amount_under_average}")

Expand Down

0 comments on commit 6a2ccf7

Please sign in to comment.