Skip to content

Commit

Permalink
some more linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jsfreischuetz committed Jul 24, 2024
1 parent 778a718 commit 4347414
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion mlos_core/mlos_core/optimizers/observations.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
def compare_optional_dataframe(
left: Optional[pd.DataFrame], right: Optional[pd.DataFrame]
) -> bool:
"""Compare DataFrames that may also be None
"""
Compare DataFrames that may also be None
Parameters
----------
Expand Down
7 changes: 4 additions & 3 deletions mlos_core/mlos_core/optimizers/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,10 @@ def _suggest(
@abstractmethod
def register_pending(self, *, pending: Suggestion) -> None:
"""
Registers the given suggestion as "pending". That is it say, it has been suggested
by the optimizer, and an experiment trial has been started. This can be useful
for executing multiple trials in parallel, retry logic, etc.
Registers the given suggestion as "pending". That is it say, it has
been suggested by the optimizer, and an experiment trial has been started.
This can be useful for executing multiple trials in parallel,
retry logic, etc.
Parameters
----------
Expand Down

0 comments on commit 4347414

Please sign in to comment.