Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorb1 committed Feb 1, 2024
1 parent 2007bfe commit 4258955
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit 4258955

Please sign in to comment.