Skip to content

Commit

Permalink
chore: tweak coverage settings
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Nov 30, 2024
1 parent 84cb12e commit be9f9d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysr/logger_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ class AbstractLoggerSpec(ABC):
@abstractmethod
def create_logger(self) -> AnyValue:
"""Create a logger instance."""
pass
pass # pragma: no cover

@abstractmethod
def write_hparams(self, logger: AnyValue, hparams: dict[str, Any]) -> None:
"""Write hyperparameters to the logger."""
pass
pass # pragma: no cover


@dataclass
Expand Down

0 comments on commit be9f9d8

Please sign in to comment.