Skip to content

Commit

Permalink
Fix invalid-overridden-method
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed Jul 3, 2023
1 parent c21897b commit 577d4ae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ocw/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@


class NoHeaderLinkColumn(tables.LinkColumn):
@property
def header(self):
return ""

Expand All @@ -20,6 +21,7 @@ def __init__(self, *args, **kwargs):
kwargs['accessor'] = 'pk'
super().__init__(*args, **kwargs)

@property
def header(self):
return ""

Expand All @@ -32,6 +34,7 @@ def render(self, record):


class MailColumn(tables.BooleanColumn):
@property
def header(self):
return ""

Expand Down

0 comments on commit 577d4ae

Please sign in to comment.