From 42589554a13a52183a40127c260ad8b93cc12b95 Mon Sep 17 00:00:00 2001 From: trevorb1 Date: Wed, 31 Jan 2024 17:38:19 -0800 Subject: [PATCH] fix typo --- tests/test_input.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_input.py b/tests/test_input.py index bfee24c..5a958ee 100644 --- a/tests/test_input.py +++ b/tests/test_input.py @@ -110,7 +110,7 @@ def simple_user_config(): # To instantiate abstract class WriteStrategy class DummyWriteStrategy(WriteStrategy): def _header(self) -> Union[TextIO, Any]: - pass + raise NotImplementedError() def _write_parameter( self, @@ -120,13 +120,13 @@ def _write_parameter( default: float, **kwargs ) -> pd.DataFrame: - pass + raise NotImplementedError() def _write_set(self, df: pd.DataFrame, set_name, handle: TextIO) -> pd.DataFrame: - pass + raise NotImplementedError() def _footer(self, handle: TextIO): - pass + raise NotImplementedError() # To instantiate abstract class ReadStrategy