From 2cb2b17cddc8938335a39b103d74b7dddfd9c3a0 Mon Sep 17 00:00:00 2001 From: Alberto Cattaneo Date: Wed, 25 Oct 2023 10:28:27 +0000 Subject: [PATCH] fix typo --- besskge/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/besskge/pipeline.py b/besskge/pipeline.py index d27c240..d77b330 100644 --- a/besskge/pipeline.py +++ b/besskge/pipeline.py @@ -69,7 +69,7 @@ def __init__( self.batch_sampler = batch_sampler if not (evaluation or return_scores): raise ValueError( - "Nothing to return. Provide `evaluation` or set" " `return_scores=True`" + "Nothing to return. Provide `evaluation` or set `return_scores=True`" ) if corruption_scheme not in ["h", "t"]: raise ValueError("corruption_scheme needs to be either 'h' or 't'")