Skip to content

Commit

Permalink
Add margin property to AbstractTableWriter class to avoid lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Mar 25, 2020
1 parent 3510078 commit ea33480
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pytablewriter/writer/_table_writer.py
Expand Up @@ -115,6 +115,14 @@ def is_formatting_float(self, value: bool) -> None:
self._dp_extractor.is_formatting_float = value
self.__clear_preprocess()

@property
def margin(self) -> int:
raise NotImplementedError()

@margin.setter
def margin(self, value: int) -> None:
raise NotImplementedError()

@property
def table_name(self) -> str:
"""
Expand Down

0 comments on commit ea33480

Please sign in to comment.