Skip to content
This repository was archived by the owner on Dec 21, 2023. It is now read-only.

Commit ae1b8ba

Browse files
author
PokestarFan
committed
changes
1 parent fdac02b commit ae1b8ba

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Diff for: markdowntable/__init__.py

-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ def add_row(self,show_warning_message = True, *args):
5555
raise AssertionError('You entered in too many row values. Please only enter {} row names.'.format(str(self.columns)))
5656
self.table += '\n{}'.format(row)
5757

58-
def get_table(self):
59-
return self.table
60-
6158

6259
def export_table_to_file(self, filename = 'markdowntable', extension='txt', mode = 'w+', overwrite_warning = True):
6360
with open('{fname}.{ext}'.format(fname = str(filename), ext = str(extension)),str(mode)) as file:

0 commit comments

Comments
 (0)