Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
simplymathematics committed Aug 4, 2024
1 parent 4f14350 commit 3d9da3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deckard/base/scorer/scorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ def __hash__(self):
def score(self, ind, dep, **kwargs) -> float:
args = deepcopy(self.args)
kwargs = OmegaConf.merge(
self.params, kwargs, list_merge_mode=ListMergeMode.REPLACE
self.params,
kwargs,
list_merge_mode=ListMergeMode.REPLACE,
)
new_args = []
for arg in args:
Expand Down

0 comments on commit 3d9da3d

Please sign in to comment.