Skip to content

Commit 151729e

Browse files
committed
Fixed tab issue. Issue #187
1 parent a761bd2 commit 151729e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Notes/04_Classes_objects/02_Inheritance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,13 @@ class TableFormatter:
289289
'''
290290
Emit the table headings.
291291
'''
292-
raise NotImplementedError()
292+
raise NotImplementedError()
293293

294294
def row(self, rowdata):
295295
'''
296296
Emit a single row of table data.
297297
'''
298-
raise NotImplementedError()
298+
raise NotImplementedError()
299299
```
300300

301301
This class does nothing, but it serves as a kind of design specification for

0 commit comments

Comments
 (0)